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
| <?php session_start(); ?>
<form name="form1" method="post" action="">
<table width="683" border="1" align="center">
<tr>
<td> Identifiant du produit:</td>
<td><input name="identifiant" type="text"></td>
</tr>
<td> Désignation du produit:</td>
<td><input name="designation" type="text"></td>
</tr>
</table>
<center><input type="submit" name="ajout" value="Ajouter produit"></center>
<table id="articles" align="center" width="750" height="44" border="1">
<tr >
<td><b>Identifiant du produit </b></td>
<td><b> Désignation du produit </b></td>
</tr>
</form>
<?php
if ((isset($_POST['identifiant'])) and (isset($_POST['designation'])))
{
$_SESSION['produit'][] = array('identifiant'=>$_POST['identifiant'], 'designation'=>$_POST['designation']);
}
foreach($_SESSION['produit'] as $value) {
echo '
<tr>
<td><b>' . $value['identifiant'] .'</b></td>
<td><b>' . $value['designation'] . '</b></td>
</tr>';
}
?> |
Partager