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
|
<?php
$query_selection = "SELECT * FROM abonnement";
$selection = mysql_query($query_selection, $base) or die(mysql_error());
$row_selection = mysql_fetch_assoc($selection);
$totalRows_selection = mysql_num_rows($selection);
?>
<?php do { ?>
<table class='contenu_abonnement'>
<tr>
<td class="contenu_type">
<input type="text" class='abonnement_type' name="" value="<?php echo $row_selection['TypeAbonnement']; ?>" maxlength="50" />
</td>
<td class="contenu_prix">
<input type="text" class='abonnement_prix' name="" value="<?php echo $row_selection['Individuel']; ?>" maxlength="8" />
</td>
<td class="contenu_prix">
<input type="text" class='abonnement_prix' name="" value="<?php echo $row_selection['Couple']; ?>" maxlength="8" />
</td>
</tr>
</table>
<?php } while ($row_selection = mysql_fetch_assoc($selection)); ?>
<div id='envoyer'><input type="submit" value="Modifier" class='modifier' name="modifier"></div> |
Partager