IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

PHP & Base de données Discussion :

l'affichage des champs automatiques


Sujet :

PHP & Base de données

  1. #1
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut l'affichage des champs automatiques
    salut tout le monde
    voila j'ai un script d'affichage des emplyée voila le suivant
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    <?php require_once('Connections/connection.php'); ?>
    <?php
    $colname_Recordset1 = "1";
    if (isset($_POST['type'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_POST['type'] : addslashes($_POST['type']);
    }
    mysql_select_db($database_connection, $connection);
    $query_Recordset1 = sprintf("SELECT * FROM administrateur WHERE type LIKE '%%%s%%'", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title> LA RECHERCHE DES ATS </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    .style1 {color: #330033}
    .style2 {color: #000000}
    body {
    	background-image: url();
    	background-color: #CCFFFF;
    }
    .style3 {
    	color: #330033;
    	font-style: italic;
    	font-weight: bold;
    }
    -->
    </style>
    </head>
     
    <body>
    <p>Pour r&eacute;einitialiser la recherche des ATS cliquer<a href="impats1.html"> ICI</a></p>
    <p><br>
    </p>
    <?php if ($totalRows_Recordset1 > 0) { // Show if recordset not empty ?>
        <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_Recordset1 == 0) { // Show if recordset empty ?>
    <form name="form1" method="post" action="">
     Aucun ATS<?php echo $_POST['type']; ?> existe!
    </form>
    <?php } // Show if recordset empty ?>
    <table border="1" >
      <tr>
        <td width="120"><div align="center" class="style2">Nom</div></td>
        <td width="136"><div align="center" class="style2">Prenom</div></td>
        <td width="127"><div align="center" class="style2">Grade</div></td>
        <td width="115"><div align="center" class="style2">Type</div></td>
        <td width="153"><div align="center" class="style2">Action</div></td>
      </tr>
      <?php do { ?>
      <tr>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['nom']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['prenom']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['grade']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['type']; ?></div></td>
        <td><div align="center" class="style3"><a href="formulaireatestationtrvailatstitulaire.php">Afficher/Imprimer</a></div></td>
        </tr>
      <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    <p>&nbsp;</p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    et j'ai comme vous avez vu un lien et quand je clique sur ce lien l'attestation du travail vas affiché mais avec des donnée inserer automatiquement de la personne concerné ( a coté du lien que j'ai déja cliqué)
    voila le programme

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    <?php require_once('Connections/connection.php'); ?>
    <?php
    $colname_Recordset1 = "1";
    if (isset($_POST['nom'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_POST['nom'] : addslashes($_POST['nom']);
    }
    mysql_select_db($database_connection, $connection);
    $query_Recordset1 = sprintf("SELECT * FROM administrateur ", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
     
     
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title> imprimer une attestation de travail d'un ATS titulaire</title>
    <style type="text/css">
    <!--
    .style10 {font-family: "Times New Roman", Times, serif; font-style: italic; font-weight: bold; color: #990000; }
    .style12 {font-family: "Times New Roman", Times, serif}
    .style2 {	font-family: Geneva, Arial, Helvetica, sans-serif;
    	font-style: italic;
    	font-weight: bold;
    }
    .style16 {font-family: Geneva, Arial, Helvetica, sans-serif; font-style: italic; font-weight: bold; font-size: xx-large; }
    .style17 {
    	color: #000000;
    	font-weight: bold;
    }
    .style18 {color: #000000}
    .style19 {font-style: italic; font-weight: bold; font-family: "Times New Roman", Times, serif;}
    .style1 {color: #330033}
    .style3 {	color: #330033;
    	font-style: italic;
    	font-weight: bold;
    }
    -->
    </style>
    </head>
     
    <body>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p align="center"><span class="style16"><strong>Attestation de travail</strong><strong></strong></span> </p>
    <p align="justify"> Le directeur de l'Ecola Pr&eacute;paratoire en Sciences et Techniques de Tlemcen soussign&eacute;, atteste que </p>
    <p align="justify">&nbsp;</p>
     
    <table width="751" height="276" align="center" bordercolor="#000000" bgcolor="#FFFFFF">
      <tr valign="baseline">
        <td width="254" align="right" nowrap="nowrap" bgcolor="#FFFFFF" class="style10 style12"><div align="center" class="style17">Mr, Mdme, Melle : </div></td>
     
        <td width="485"><div align="center">
    	      <table height="64" border="0" >
     
            <?php do { ?>
            <tr>
              <td width="120"><div align="center" class="style1"><?php echo $row_Recordset1['nom']; ?></div></td>
              <td width="136"><div align="center" class="style1"><?php echo $row_Recordset1['prenom']; ?></div></td>
            </tr>
            <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
          </table>
        </div></td>
      </tr>
      <tr valign="baseline">
        <td align="right" nowrap="nowrap" bgcolor="#FFFFFF" class="style10"><div align="center" class="style18">N&eacute;(e) le : </div></td>
        <td><select name="jour" size="1" id="jour">
          <option>01</option>
          <option>02</option>
          <option>03</option>
          <option>04</option>
          <option>05</option>
          <option>06</option>
          <option>07</option>
          <option>08</option>
          <option>09</option>
          <option>10</option>
          <option>11</option>
          <option>12</option>
          <option>13</option>
          <option>14</option>
          <option>15</option>
          <option>16</option>
          <option>17</option>
          <option>18</option>
          <option>19</option>
          <option>20</option>
          <option>21</option>
          <option>22</option>
          <option>23</option>
          <option>24</option>
          <option>25</option>
          <option>26</option>
          <option>27</option>
          <option>28</option>
          <option>29</option>
          <option>30</option>
          <option>31</option>
        </select> <select name="mois" size="1" id="mois">
          <option>01</option>
          <option>02</option>
          <option>03</option>
          <option>04</option>
          <option>05</option>
          <option>06</option>
          <option>07</option>
          <option>08</option>
          <option>09</option>
          <option>10</option>
          <option>11</option>
          <option>12</option>
        </select>
        <select name="annee" size="1" id="annee">
          <option selected="selected">1940</option>
          <option>1941</option>
          <option>1942</option>
          <option>1943</option>
          <option>1944</option>
          <option>1945</option>
          <option>1946</option>
          <option>1947</option>
          <option>1948</option>
          <option>1949</option>
          <option>1950</option>
          <option>1951</option>
          <option>1952</option>
          <option>1953</option>
          <option>1954</option>
          <option>1955</option>
          <option>1956</option>
          <option>1957</option>
          <option>1958</option>
          <option>1959</option>
          <option>1960</option>
          <option>1961</option>
          <option>1962</option>
          <option>1963</option>
          <option>1964</option>
          <option>1965</option>
          <option>1966</option>
          <option>1967</option>
          <option>1968</option>
          <option>1969</option>
          <option>1970</option>
          <option>1971</option>
          <option>1972</option>
          <option>1973</option>
          <option>1974</option>
          <option>1975</option>
          <option>1976</option>
          <option>1977</option>
          <option>1978</option>
          <option>1979</option>
          <option>1980</option>
          <option>1981</option>
          <option>1982</option>
          <option>1983</option>
          <option>1984</option>
          <option>1985</option>
          <option>1986</option>
          <option>1987</option>
          <option>1988</option>
          <option>1989</option>
          <option>1990</option>
          <option>1991</option>
          <option>1992</option>
          <option>1993</option>
          <option>1994</option>
          <option>1995</option>
          <option>1996</option>
          <option>1997</option>
          <option>1998</option>
          <option>1999</option>
          <option>2000</option>
          <option>2001</option>
          <option>2002</option>
          <option>2003</option>
          <option>2004</option>
          <option>2005</option>
          <option>2006</option>
          <option>2007</option>
          <option>2008</option>
          <option>2009</option>
          <option>2010</option>
          <option>2011</option>
          <option>2012</option>
          <option>2013</option>
          <option>2014</option>
          <option>2015</option>
          <option>2016</option>
          <option>2017</option>
          <option>2018</option>
          <option>2019</option>
          <option>2020</option>
        </select>
        &agrave; 
        <input name="lieu2" type="text" id="lieu2" size="18" /> <select name="wilaya" size="1" id="wilaya">
          <option>ADRAR</option>
          <option>CHLEF</option>
          <option>LAGHUOUAT</option>
          <option>OUM EL BOUAGHI</option>
          <option>BETNA</option>
          <option>BIJAIA</option>
          <option>BISKRA</option>
          <option>BECHAR</option>
          <option>BLIDA</option>
          <option>BOUIRA</option>
          <option>TAMANRASSET</option>
          <option>TEBESSA</option>
          <option selected="selected">TLEMCEN</option>
          <option>TIARET</option>
          <option>TIZI OUZOU</option>
          <option>ALGER</option>
          <option>DJELFA</option>
          <option>JIJEL</option>
          <option>SETIF</option>
          <option>SAIDA</option>
          <option>SKIKDA</option>
          <option>SIDI BEL ABESSE</option>
          <option>ANNABA</option>
          <option>GUELMA</option>
          <option>CONSTANTINE</option>
          <option>MEDEA</option>
          <option>MOSTAGANEM</option>
          <option>M'SILA</option>
          <option>MASCARA</option>
          <option>OUARGLA</option>
          <option>ORAN</option>
          <option>EL BAYADH</option>
          <option>ILLIZI</option>
          <option>B B ARRERIDJ</option>
          <option>BOUMERDES</option>
          <option>EL TAREF</option>
          <option>TINDOUF</option>
          <option>TISSEMSILET</option>
          <option>EL OUED</option>
          <option>KHENCHLA</option>
          <option>SOUK AHRAS</option>
          <option>TIPAZA</option>
          <option>MILA</option>
          <option>AIN DEFLA</option>
          <option>NAAMA</option>
          <option>AIN TEMOUCHENT</option>
          <option>GHARDAIA</option>
          <option>RELIZANE</option>
        </select></td>
      </tr>
      <tr valign="baseline">
        <td align="right" nowrap="nowrap" bgcolor="#FFFFFF" class="style2"><div align="center" class="style18"><span class="style19">GRADE:</span></div></td>
        <td><select name="grade" size="1" id="grade">
          <option>ING D'ETAT, مهندس دولة</option>
          <option>ADM PRC, متصرف رئيسي</option>
          <option>ADM, متصرف</option>
          <option>TECH Sup, تقني سامي</option>
          <option>TECH, تقني </option>
          <option>COMPT PRC, محاسب رئيسي</option>
          <option>COMPT, محاسب </option>
          <option>ATTACHE PRC D'ADM, ملحق رئيسي للادارة</option>
          <option>ATTACHE ADM, ملحق للادارة</option>
          <option>SECR PRC, كاتبة رئيسية</option>
          <option>SECR DIRECTION, كاتبة مديرية</option>
          <option>AGENT ADM PRC, عون ادارة رئيسي</option>
          <option>AGENT ADM, عون ادارة </option>
          <option>AGENT DE BUREAU, عون مكتب</option>
          <option>AGENT DE SAISIE, عون حفظ البيانات</option>
          <option>OP1, ع مهني م 1</option>
          <option>GARDIEN, حارس</option>
          <option>CHAUFFEUR NIVEAU2, ع مهني م 2</option>
          <option>OP4,ع مهني م 4</option>
        </select></td>
      </tr>
      <tr valign="baseline">
        <td align="right" nowrap="nowrap" bgcolor="#FFFFFF" class="style2"><div align="center" class="style18">Est employ&eacute; &agrave; l'&eacute;cole du </div></td>
        <td><select name="jour1" size="1" id="jour1">
          <option>01</option>
          <option>02</option>
          <option>03</option>
          <option>04</option>
          <option>05</option>
          <option>06</option>
          <option>07</option>
          <option>08</option>
          <option>09</option>
          <option>10</option>
          <option>11</option>
          <option>12</option>
          <option>13</option>
          <option>14</option>
          <option>15</option>
          <option>16</option>
          <option>17</option>
          <option>18</option>
          <option>19</option>
          <option>20</option>
          <option>21</option>
          <option>22</option>
          <option>23</option>
          <option>24</option>
          <option>25</option>
          <option>26</option>
          <option>27</option>
          <option>28</option>
          <option>29</option>
          <option>30</option>
          <option>31</option>
        </select>
          <select name="mois1" size="1" id="mois1">
            <option>01</option>
            <option>02</option>
            <option>03</option>
            <option>04</option>
            <option>05</option>
            <option>06</option>
            <option>07</option>
            <option>08</option>
            <option>09</option>
            <option>10</option>
            <option>11</option>
            <option>12</option>
          </select>
          <select name="annee1" size="1" id="annee1">
            <option>1940</option>
            <option>1941</option>
            <option>1942</option>
            <option>1943</option>
            <option>1944</option>
            <option>1945</option>
            <option>1946</option>
            <option>1947</option>
            <option>1948</option>
            <option>1949</option>
            <option>1950</option>
            <option>1951</option>
            <option>1952</option>
            <option>1953</option>
            <option>1954</option>
            <option>1955</option>
            <option>1956</option>
            <option>1957</option>
            <option>1958</option>
            <option>1959</option>
            <option>1960</option>
            <option>1961</option>
            <option>1962</option>
            <option>1963</option>
            <option>1964</option>
            <option>1965</option>
            <option>1966</option>
            <option>1967</option>
            <option>1968</option>
            <option>1969</option>
            <option>1970</option>
            <option>1971</option>
            <option>1972</option>
            <option>1973</option>
            <option>1974</option>
            <option>1975</option>
            <option>1976</option>
            <option>1977</option>
            <option>1978</option>
            <option>1979</option>
            <option>1980</option>
            <option>1981</option>
            <option>1982</option>
            <option>1983</option>
            <option>1984</option>
            <option>1985</option>
            <option>1986</option>
            <option>1987</option>
            <option>1988</option>
            <option>1989</option>
            <option>1990</option>
            <option>1991</option>
            <option>1992</option>
            <option>1993</option>
            <option>1994</option>
            <option>1995</option>
            <option>1996</option>
            <option>1997</option>
            <option>1998</option>
            <option>1999</option>
            <option>2000</option>
            <option>2001</option>
            <option>2002</option>
            <option>2003</option>
            <option>2004</option>
            <option>2005</option>
            <option>2006</option>
            <option>2007</option>
            <option>2008</option>
            <option>2009</option>
            <option>2010</option>
            <option>2011</option>
            <option>2012</option>
            <option>2013</option>
            <option>2014</option>
            <option>2015</option>
            <option>2016</option>
            <option>2017</option>
            <option>2018</option>
            <option>2019</option>
            <option>2020</option>
          </select> 
        &agrave; ce jour. </td>
      </tr>
      <tr valign="baseline">
        <td nowrap="nowrap" align="right"><span class="style18"></span></td>
        <td><p>&nbsp;</p></td>
      </tr>
    </table>
    <ul>
      <li>Cette attestation, qui est valable uniquement &agrave; l'&eacute;tranger, est &eacute;tablie &agrave; la demande de l'int&eacute;ress&eacute; pour servir et valoir ce que de droit.</li>
    </ul>
    <p align="right"><strong>Le directeur</strong></p>
    <p align="right">&nbsp;</p>
    <p align="right">&nbsp;</p>
    <p align="right">&nbsp;</p>
    <p align="right">&nbsp;</p>
    <p align="right">&nbsp;</p>
    <p align="right">&nbsp;</p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    mais le probleme quej'ai c'est que dans les chmps nom
    tout les noms et les prenoms s'affiche
    mais ce que je veux
    seulement un nom et un prenom de la personne concerné

    j'éspére qu'il ya quelqu'un qui peux m'aidé
    merci beacoup
    bye

  2. #2
    Membre émérite
    Avatar de gene69
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    1 769
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Janvier 2006
    Messages : 1 769
    Points : 2 446
    Points
    2 446
    Par défaut
    prends ta requete SQL et execute là depuis ton outil d'administration. si les résultat qui s'affiches montre plusieurs noms/prenoms c'est qu'elle est mauvaise.

    j'arrive pas a savoir si c'est un problème avec le nombre de lignes retournés ou le contenu des colonnes.

  3. #3
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut
    le probleme que j'ai c'est au niveau de la requéte parceque quand je met la meme requete et je change voila la requete

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     "SELECT * FROM administrateur WHERE type = '%%% TITULAIRE , مرسم/ة%%' "
    il m'affiche rien
    et tout les noms , prenoms qu'ils s'affichent le tout disparu
    merci

  4. #4
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut
    en plus les autres champs comment je doit faire pour les affiché automatiquement sans les rentré
    ya t-il d'autres méthode
    enfin un autre script si c'est possible
    j'éspére qu'il ya quelqu'un qui peux m'aidé
    merci d'avance
    a bientot

  5. #5
    Membre émérite
    Avatar de gene69
    Profil pro
    Inscrit en
    Janvier 2006
    Messages
    1 769
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations professionnelles :
    Secteur : High Tech - Produits et services télécom et Internet

    Informations forums :
    Inscription : Janvier 2006
    Messages : 1 769
    Points : 2 446
    Points
    2 446
    Par défaut
    Est ce que tu comprends ce que fais la requête? Qui l'a écrite cette requête?

  6. #6
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut
    c'est moi qui l'a écrit
    mais je t'ai dit que je suis encors débutante alors j'écrit des script que je ne sais pas que je suis juste a 100%
    l'éssentielle voila ce que j'ai fai j'ai changé le script et voila le nouveau
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    <?php require_once('Connections/connection.php'); ?>
    <?php
    $colname_Recordset1 = "1";
    if (isset($_POST['type'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_POST['type'] : addslashes($_POST['type']);
    }
    mysql_select_db($database_connection, $connection);
    $query_Recordset1 = sprintf("SELECT * FROM administrateur WHERE type LIKE '%%%s%%' ", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
     
     
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title> imprimer une attestation de travail d'un ATS titulaire</title>
    <style type="text/css">
    <!--
    .style10 {font-family: "Times New Roman", Times, serif; font-style: italic; font-weight: bold; color: #990000; }
    .style12 {font-family: "Times New Roman", Times, serif}
    .style2 {	font-family: Geneva, Arial, Helvetica, sans-serif;
    	font-style: italic;
    	font-weight: bold;
    }
    .style16 {font-family: Geneva, Arial, Helvetica, sans-serif; font-style: italic; font-weight: bold; font-size: xx-large; }
    .style17 {
    	color: #000000;
    	font-weight: bold;
    }
    .style18 {color: #000000}
    .style19 {font-style: italic; font-weight: bold; font-family: "Times New Roman", Times, serif;}
    .style1 {color: #330033}
    .style21 {color: #000000; font-weight: bold; font-style: italic; }
    -->
    </style>
    </head>
     
    <body>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p align="center"><span class="style16"><strong>Attestation de travail</strong><strong></strong></span> </p>
    <p align="justify"> Le directeur de l'Ecola Pr&eacute;paratoire en Sciences et Techniques de Tlemcen soussign&eacute;, atteste que </p>
    <p align="justify"><span class="style17">Mr, Mdme, Melle : </span><?php echo $row_Recordset1['nom']; ?>               
      <?php echo $row_Recordset1['prenom']; ?></p>
    <p align="justify"><span class="style19">N&eacute;(e) le : </span> <span class="style17"> </span><?php echo $row_Recordset1['jour']; ?>/ <?php echo $row_Recordset1['mois']; ?>/ <?php echo $row_Recordset1['annee']; ?> &agrave; <?php echo $row_Recordset1['lieu2']; ?>...<?php echo $row_Recordset1['wilaya']; ?></p>
    <p align="justify"><span class="style19">GRADE:</span> <?php echo $row_Recordset1['grade']; ?></p>
    <p align="justify"><span class="style19">Est employ&eacute; &agrave; l'&eacute;cole du : </span><?php echo $row_Recordset1['jour1']; ?>/ <?php echo $row_Recordset1['mois1']; ?>/ <?php echo $row_Recordset1['annee1']; ?> <span class="style19">&agrave; ce jour </span></p>
    <p align="justify">&nbsp;</p>
     
    <?php if ($totalRows_Recordset1 > 0) { // Show if recordset not empty ?>
        <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_Recordset1 == 0) { // Show if recordset empty ?>
    <form name="form1" method="post" action="">
    </form>
    <?php } // Show if recordset empty ?>
     
     
     
    <ul>
      <li>Cette attestation, qui est valable uniquement &agrave; l'&eacute;tranger, est &eacute;tablie &agrave; la demande de l'int&eacute;ress&eacute; pour servir et valoir ce que de droit.</li>
    </ul>
    <p align="right"><strong>Le directeur</strong></p>
    <p align="right">&nbsp;</p>
    <p align="center"><a href="javascript:window.print()">Imprimer cette page</a></p>
    <p align="right">&nbsp;</p>
    <p align="right">&nbsp;</p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    mais le probleme qui se pose c'est que toujours il m'affiche que le premier ats(employée)
    c'est a dire dans le script suivant:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    <?php require_once('Connections/connection.php'); ?>
    <?php
    $colname_Recordset1 = "1";
    if (isset($_POST['type'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_POST['type'] : addslashes($_POST['type']);
    }
    mysql_select_db($database_connection, $connection);
    $query_Recordset1 = sprintf("SELECT * FROM administrateur WHERE type LIKE '%%%s%%'", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title> LA RECHERCHE DES ATS </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    .style1 {color: #330033}
    .style2 {color: #000000}
    body {
    	background-image: url();
    	background-color: #CCFFFF;
    }
    .style3 {
    	color: #330033;
    	font-style: italic;
    	font-weight: bold;
    }
    -->
    </style>
    </head>
     
    <body>
    <p>Pour r&eacute;einitialiser la recherche des ATS cliquer<a href="impats1.html"> ICI</a></p>
    <p><br>
    </p>
    <?php if ($totalRows_Recordset1 > 0) { // Show if recordset not empty ?>
        <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_Recordset1 == 0) { // Show if recordset empty ?>
    <form name="form1" method="post" action="">
     Aucun ATS <?php echo $_POST['type']; ?> existe!
    </form>
    <?php } // Show if recordset empty ?>
    <table border="1" >
      <tr>
        <td width="120"><div align="center" class="style2">Nom</div></td>
        <td width="136"><div align="center" class="style2">Prenom</div></td>
        <td width="127"><div align="center" class="style2">Grade</div></td>
        <td width="115"><div align="center" class="style2">Type</div></td>
        <td width="153"><div align="center" class="style2">Action</div></td>
      </tr>
      <?php do { ?>
      <tr>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['nom']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['prenom']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['grade']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['type']; ?></div></td>
        <td><div align="center" class="style3"> <a href="formulaireatestationtrvailatstitulaire.php">Afficher/Imprimer</a></div></td>
        </tr>
      <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    <p>&nbsp;</p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    quand je clique sur affiché imprimer il m'affiche que le premier ats titulaire malgré que ce programme affiche selon la demande de ce programme:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title> LA RECHERCHE DES ATS </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    body {
    	background-image: url();
    }
    .style1 {	font-size: x-large;
    	font-style: italic;
    	font-weight: bold;
    }
    .style2 {	font-size: large;
    	font-weight: bold;
    	color: #FFFFFF;
    	font-style: italic;
    }
    -->
    </style></head>
     
    <body>
    <div align="left">
      <p align="center" class="style1">
        <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="507" height="56">
          <param name="movie" value="Movie6.swf">
          <param name="quality" value="high">
          <embed src="Movie6.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="507" height="56"></embed>
        </object>
      </p>
      <p>&nbsp;</p>
      <div id="menu">
        <div class="element_menu">
          <dl>
            <dt>
              <div align="left">
                <div align="left">
                  <p align="center"></p>
                </div>
                <p align="left" class="style2">&nbsp;</p>
              </div>
            </dt>
          </dl>
          <p>&nbsp;</p>
        </div>
      </div>
    </div>
    <form name="form1" method="post" action="atstitulaireimp.php">
      <div align="center">
        <p>
          <label><strong>Titulaire  :  </strong></label>
          <select name="type" size="1" id="type">
            <option>TITULAIRE , مرسم/ة</option>
            <option>CONTRACTUEL/(LE) , متعاقد/ة</option>
            <option>VACATAIRE , مؤقت</option>
          </select>
          <input type="submit" name="Submit" value="search!!">
    </p>
        <p>&nbsp;</p>
      </div>
    </form>
    </body>
    </html>
    c'est a dire si je selectionne ats titulaire le 2 éme script affiche la liste des ats titulaire
    et dans ce 3 éme programme je selectionne ats contractuelle le 2 éme script affiche la liste des ats contractuelle aisi de suite
    alors que le 1ér script
    affiche que les information du 1ér ats titulaire dans tout les cas
    j'éspére qu'il ya quelqu'un qui peux m'aidé

  7. #7
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut
    je pense que je doit entrer id pour que je puisse affiche les informations nécéssaire pour l'ats que je veux
    mais comment?

  8. #8
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut
    j'ai réaliser quelques modifications
    voila mon scipt
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    <?php require_once('Connections/connection.php'); ?>
    <?php
    $colname_Recordset1 = "1";
    if (isset($_POST['type'])) {
      $colname_Recordset1 = (get_magic_quotes_gpc()) ? $_POST['type'] : addslashes($_POST['type']);
    }
    mysql_select_db($database_connection, $connection);
    $query_Recordset1 = sprintf("SELECT * FROM administrateur WHERE type LIKE '%%%s%%'  ", $colname_Recordset1);
    $Recordset1 = mysql_query($query_Recordset1, $connection) or die(mysql_error());
    $row_Recordset1 = mysql_fetch_assoc($Recordset1);
    $totalRows_Recordset1 = mysql_num_rows($Recordset1);
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <title> LA RECHERCHE DES ATS </title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <style type="text/css">
    <!--
    .style1 {color: #330033}
    .style2 {color: #000000}
    body {
    	background-image: url();
    	background-color: #CCFFFF;
    }
    .style3 {
    	color: #330033;
    	font-style: italic;
    	font-weight: bold;
    }
    -->
    </style>
    </head>
     
    <body>
    <p>Pour r&eacute;einitialiser la recherche des ATS cliquer<a href="impats1.html"> ICI</a></p>
    <p><br>
    </p>
    <?php if ($totalRows_Recordset1 > 0) { // Show if recordset not empty ?>
        <?php } // Show if recordset not empty ?>
    <?php if ($totalRows_Recordset1 == 0) { // Show if recordset empty ?>
    <form name="form1" method="post" action="">
     Aucun ATS <?php echo $_POST['type']; ?> existe!
    </form>
    <?php } // Show if recordset empty ?>
    <table border="1" >
      <tr>
        <td width="120"><div align="center" class="style2">Nom</div></td>
        <td width="136"><div align="center" class="style2">Prenom</div></td>
        <td width="127"><div align="center" class="style2">Grade</div></td>
        <td width="115"><div align="center" class="style2">Type</div></td>
        <td width="153"><div align="center" class="style2">Action</div></td>
      </tr>
      <?php do { ?>
      <tr>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['nom']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['prenom']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['grade']; ?></div></td>
        <td><div align="center" class="style1"><?php echo $row_Recordset1['type']; ?></div></td>
        <td><div align="center" class="style3"><a href="formulaireatestationtrvailatstitulaire.php?id="+$row_Recordset1['id']+"">Afficher/Imprimer</a></div></td>
        </tr>
      <?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
    </table>
    <p>&nbsp;</p>
    </body>
    </html>
    <?php
    mysql_free_result($Recordset1);
    ?>
    mais le probleme toujours sa reste
    maintenant il m'affiche le dernier ats que j'ai entrer dans le formulaire d'inscription et il s'affiche au début du tableau pour l'affiche et l'impréssion et quand je clique sur n'importe quel employé qui s'affiche dans ce tableau l'atestation de travail s'affiche mais toujours du dernier employée que j'ai
    j'éspére qu'il ya un aide

    j'ai une autres idée que je doit limité l'id dans la requete suivante
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    $query_Recordset1 = sprintf("SELECT * FROM administrateur WHERE type LIKE '%%%s%%'", $colname_Recordset1);
    j'éspére que je trouve quelqu'un qui peux m'aidé
    merci d'avance
    a bientot

  9. #9
    Nouveau membre du Club
    Inscrit en
    Mars 2009
    Messages
    161
    Détails du profil
    Informations forums :
    Inscription : Mars 2009
    Messages : 161
    Points : 38
    Points
    38
    Par défaut
    bonjour tout le monde
    je vois qu'il ya personne qui peux m'aidé
    svp j'ai besoin de ce script en urgent
    s'il ya quelqu'un qui peux m'aidé d'une autre façon
    ou par un autre script
    n'hésité pas je suis vraiment en retard et j'ai besoin de trouvé une soulution
    merci d'avance
    a bientot

Discussions similaires

  1. Réponses: 10
    Dernier message: 03/03/2009, 12h46
  2. affichage des champs selon critère dans un formulaire
    Par emmablue dans le forum Access
    Réponses: 5
    Dernier message: 31/07/2006, 10h39
  3. Réponses: 14
    Dernier message: 17/05/2006, 18h16
  4. affichage des champs vides
    Par nada83 dans le forum Access
    Réponses: 5
    Dernier message: 02/05/2006, 16h33
  5. Réponses: 5
    Dernier message: 08/03/2005, 14h22

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo