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
| <?php
$file = fopen('list.menu', 'a+');
$lines = fgets($file);
$words = explode(";",$lines);
?>
<html>
<head>
<title>menu bdd</title>
</head>
<body>
<form method = post action = "lafermedupetitmont.com/menu.php">
<?php
echo '<form>
<select name="list" size="1">
<option> ';
$c = count($words);
for($i = 0; $i < $c; $i++)
{
$j = $i + 1;
echo '<option value=\"';
echo $j;
echo '\">';
echo $words[$i];
echo "\n";
}
echo "</select>";
?>
<input type = "submit" value = "ok">
</form>
</body>
</html> |
Partager