Nieuw lid |
|
Ik ben aan het testen met PHP strings en arrays, ik heb een fout ontdekt ik mijn code:
HTML code van het formulier:
<form action="string_test.php" method="post">
<input type="text" size="30" maxlength="50" name="name"><br>
Do you think you are cool? <input type="checkbox" name="cool">
<input type="Submit" name="Submit" value="Submit">
</form>
<form action="string_test.php" method="post"> <input type="text" size="30" maxlength="50" name="name"><br> Do you think you are cool? <input type="checkbox" name="cool"><input type="Submit" name="Submit" value="Submit">
PHP code die hem bekijkt:
<?php
// coolness
$coolness = $_POST['cool'];
if($coolness == 'cool')
{
$iamcool = true;
}
else
{
$iamcool = false;
}
?>
<?php // coolness $coolness = $_POST['cool']; if($coolness == 'cool') { $iamcool = true; } else { $iamcool = false; } ?>
(Geen commentaar xD, ik moest iets verzinnen om een goed voorbeeld te hebben om zo'n checkbox te maken)
$coolness = $_POST['cool'];
Oh, en ik heb ook al inplaatsvan
$coolness = $_POST['cool'];
$coolness = $_POST['cool'];
de code
$coolness = $_POST[true];
$coolness = $_POST[true];
geprobeert
(sorry voor de onduidelijkheid)
Mijn vraag is: Kan iemand mij duidelijk maken wat hier fout is, en wat wel goed is?
|