Je moet ingelogd zijn om te stemmen.
<?php if($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['beurs'])){ foreach($_POST['beurs']){ mysql_query("INSERT INTO WHERE"); } } ?> <form method="post" action=""> <input type="checkbox" name="beurs[]" value="beursnaam" /> <input type="submit" name="koop" value="Koop" /> </form>
<?phpif($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['beurs'])){ foreach($_POST['beurs']){ mysql_query("INSERT INTO WHERE"); }}?><form method="post" action=""><input type="checkbox" name="beurs[]" value="beursnaam" /><input type="submit" name="koop" value="Koop" /></form>
<?php if($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['beurs'])){ foreach($_POST['beurs'] as $sVeld => $sInhoud){ if(!empty($sInhoud) && is_numeric($sInhoud)){ // Het veld is de id van de beurs mysql_query("INSERT INTO table (beurs) VALUES (".$sVeld.")"); } } } ?> <form method="post" action=""> <!-- de cijfers 1 t/m 4 zijn de id's van de beurs --> <input type="text" name="beurs[1]" /> <input type="text" name="beurs[2]" /> <input type="text" name="beurs[3]" /> <input type="text" name="beurs[4]" /> <input type="submit" name="koop" value="Koop" /> </form>
<?phpif($_SERVER['REQUEST_METHOD'] == 'POST' && isset($_POST['beurs'])){ foreach($_POST['beurs'] as $sVeld => $sInhoud){ if(!empty($sInhoud) && is_numeric($sInhoud)){ // Het veld is de id van de beurs mysql_query("INSERT INTO table (beurs) VALUES (".$sVeld.")"); } }}?><form method="post" action=""><!-- de cijfers 1 t/m 4 zijn de id's van de beurs --><input type="text" name="beurs[1]" /><input type="text" name="beurs[2]" /><input type="text" name="beurs[3]" /><input type="text" name="beurs[4]" /><input type="submit" name="koop" value="Koop" /></form>