Hi
I am just learning php. I can make a script that makes a choice and prints it out.
<?php
$str = 'apple';
if ($str === 'apple') {
echo "Correct?";
exit;
}
else {
echo "Wrong";
exit;
}
?>
I would like this page to have a form to input the text. In this example if the inputed field was apple the answer would be Correct..
cheers Possum..
I am just learning php. I can make a script that makes a choice and prints it out.
<?php
$str = 'apple';
if ($str === 'apple') {
echo "Correct?";
exit;
}
else {
echo "Wrong";
exit;
}
?>
I would like this page to have a form to input the text. In this example if the inputed field was apple the answer would be Correct..
cheers Possum..
