Nieuw lid |
|
Mijn variabelen worden blijkbaar correct weggeschreven (zie ik in de URL want ik gebruik GET even). Maar ik krijg ze om een of andere reden toch niet in mijn array weggeschreven. Laat staan dat ik ze kan weergeven. Zal wel weer iets stoms zijn, maar ik kom er niet uit.
<?php
$options = 3;
$multipleOptions;
echo "<form action='array.php' method='get'>";
echo "Vul hieronder de antwoorden in:<br />";
for($count = 1; $count <= $options; $count++) {
echo "Answer #".$count.": <input name='$count' type='text'><br />";
}
echo "<input type='submit' value='submit'>";
echo "</form>";
if (!empty($_GET['$count'])){
for($count = 1; $count <= $options; $count++) {
$multipleOptions[$count] = $_GET['$count'];
}
foreach( $multipleOptions as $key => $value){
echo "ID: $key, input: $value <br />";}
}
?>
<?php $options = 3; $multipleOptions; echo "<form action='array.php' method='get'>"; echo "Vul hieronder de antwoorden in:<br />"; for($count = 1; $count <= $options; $count++) { echo "Answer #".$count.": <input name='$count' type='text'><br />"; } echo "<input type='submit' value='submit'>"; if (!empty($_GET['$count'])){ for($count = 1; $count <= $options; $count++) { $multipleOptions[$count] = $_GET['$count']; } foreach( $multipleOptions as $key => $value){ echo "ID: $key, input: $value <br />";} } ?>
|