Bonjour. J'ai un formulaire avec plusieurs input avec des champs texte et des listes a choix. Mon utilisateur peut remplir jusqu'a huit de ses champs dans le formualire.
Code :
- <?php
- if (isset($_POST['validate'])){
- foreach ($_POST as $value) {
- //echo "{$value} </br>";
- $tab_info = explode("<br />", $value);
- $info1 = $tab_info[0];
- echo $info1."<br />";
- //print_r ($pieces)."<br />";
- }
- ?> <center><font color="red"><i>Command submitted</i></font></center><br /><br />
- <?php
- }
- ?>
- <h1>Thomson <span class="green">Info</span></h1>
- <h2>ISAM lines modifications</h2>
- Select the lines you want to configure
- <form method="post" action="" class="searchform" name="frm_line_ADSL">
- <input name="validate" type="hidden" value="yes" />
- <b>Line </b><br>
- <table border="1" align="center">
- <?php
- for ($j= 1; $j <= 8; $j++){
- echo "
- <tr>
- <td>PVC {$j}<input type='text' name='PVC_{$j}' size='3' maxlength='4'> </td>
- <td>Vlan
- <select name='vlan_{$j}' size='1'>
- <option value=''></option>
- <option value='11'>11 - IPoE</option>
- <option value='12'>12 - IPoE</option>
- <option value='13'>14 - IPoE</option>
- <option value='13'>13 - IPoE</option>
- <option value='14'>14 - IPoE</option>
- <option value='1032'>1032 - PPPoE</option>
- <option value='1035'>1035 - PPPoE</option>
- <option value='1036'>1036 - PPPoE</option>
- <option value='1037'>1037 - PPPoE</option>
- <option value='1038'>1038 - PPPoE</option>
- </select>
- </td>
- </tr>";
- }
- ?>
- </table>
- <center>
- <br /><br />
- <input type="submit" value="Send">
- <input type="reset" value="Reset">
- </form>
- <br /><br />
- </center>
|
Mon probleme est le suivant. Je souhaiterais que chaque reponse soit stockee dans une case d'un tableau. En gros a chaque tour de la boucle for each, que je recupere les valeurs deux a deux (un PVC couple a un Vlan).
Merci d'avance.