Valid XHTML     Valid CSS2    

Listing du fichier ajouts.php

 

00001     <?php
00002     include(
"../../std.php") ;
00003     debutPage
("                                ")  ;
00004     
00005     h1
("TPLONG (sources)") ;
00006     
00007     blockquote
() ;
00008     debutSection
() ;
00009     ?>
00010     <h2>Ajout d'un service</h2>
00011     <form action="ajoutService.php" method="get">
00012     <table summary="un">
00013     <tr>
00014     <td>
00015     Nom du service
00016     </td>
00017     <td> <input type="text" name="nomService" /> </td>
00018     <td> &nbsp; </td>
00019     <td> <input type="submit" /></td>
00020     </tr>
00021     
00022     <tr>
00023     <td>&nbsp;</td>
00024     </tr>
00025     
00026     <tr>
00027     <td>&nbsp;</td>
00028     </tr>
00029     </table>
00030     </form>
00031     
00032     <h2>Ajout d'une personne sachant le service</h2>
00033     
00034     <form action="ajoutPersonne.php" method="get">
00035     <table summary="deux">
00036     <tr>
00037     <td>
00038     Nom de la personne
00039     </td>
00040     <td> <input type="text" name="nomPers" /> Service ? </td>
00041     <td>
00042     
00043     <?php
00044     
00045     $cnx    = @
mysql_connect("localhost","anonymous","anonymous") ;
00046     $resCnx 
= @mysql_query($cnx) ;
00047     
00048     $resUse 
= @mysql_select_db("test") ;
00049     
00050     $ch1 
"numServ" ;
00051     $ch2 
"nomServ" ;
00052     $que 
"select $ch1,$ch2 from SERVI" ;
00053     $res 
= @mysql_query($que) ;
00054     echo "<select name='numServ'>\n" 
;
00055     while ($tdr
=mysql_fetch_array($res)) {
00056       echo "<option value='"
.$tdr[$ch1]."'> ".$tdr[$ch2]."</option>\n" ;
00057     } ; # fin tant que
00058     echo 
"</select>\n" ;
00059     
00060     ?>
00061     </td>
00062     
00063     <td> <input type="submit" /></td>
00064     </tr>
00065     </table>
00066     </form>
00067     
00068     
00069     <?php
00070     finSection() ;
00071     finblockquote
() ;
00072     finPage
() ;
00073     ?>

Pour ne pas voir les numéros de ligne, ajoutez &nl=non à la suite du nom du fichier.

 

 

retour gH    Retour à la page principale de   (gH)