Je moet ingelogd zijn om te stemmen.
<form name="form1" method="post" action="<?=$_SERVER['REQUEST_URI']?>"> <? for($i=0; $i<3; $i++) { echo $i.'<input type="text" name="optie'.$i.'" /><br/><br />'; } ?> <input type="submit" name="Submit" value="Submit" /> </form> <?php $string = ""; if(isset($_POST['Submit'])) { for($i=0; $i<3; $i++) { $string = "±".$_POST['optie'.$i.'']; } echo $string; // hier zou ik dus eigenlijk de gegevens van de textvakken echoen...gescheiden door ± (bijv: ±aap±noot±mies) } ?>
<form name="form1" method="post" action="<?=$_SERVER['REQUEST_URI']?>"><?for($i=0; $i<3; $i++) { echo $i.'<input type="text" name="optie'.$i.'" /><br/><br />'; }?><input type="submit" name="Submit" value="Submit" /></form><?php$string = "";if(isset($_POST['Submit'])) { for($i=0; $i<3; $i++) { $string = "±".$_POST['optie'.$i.'']; } echo $string; // hier zou ik dus eigenlijk de gegevens van de textvakken echoen...gescheiden door ± (bijv: ±aap±noot±mies) } ?>
<form name="form1" method="post" action="<?=$_SERVER['REQUEST_URI']?>">
<form name="form1" method="post" action="<?=$_SERVER['REQUEST_URI'];?>">
for($i = 0; $i < 3; $i++) { $string .= '±' . $_POST['optie' . $i]; }
for($i=0; $i < sizeof($_POST['input']); $i++) { echo $_POST['input'][$i]."<br />"; }
for($i=0; $i < sizeof($_POST['input']); $i++){ echo $_POST['input'][$i]."<br />";}