Is it like a guessing game? Or like above you give the user a code and they have to repeat it in a text box?

Is it like a guessing game? Or like above you give the user a code and they have to repeat it in a text box?
BelowYeah, for this enterprise evening.
So in Jacks code,
Do I specify a code, and that code is the only one accepted. So, basically the page will just be a box to type the code in, and a submit button. If I say the code is 123, if 123 is entered it will redirect to another page saying congrats you won bla bla bla. If it is the wrong one it will say sorry, you have lost. I don't mean there is a code shown, but 123 would be the only code that could be accepted ??
PHP Code:<?php
if($_GET["act"] == "submit")
{
$entry = ($_POST["entry"]);
$answer = "123";
if($entry == $answer)
{
echo("Well Done! You got it right. The answer was $answer.. you can replace this with the form or what ever.");
} else {
echo("Ohh Noes! You got it wrong.. lol");
}
}
else
{
echo("Please enter the answer into the box below:<br>
<form method=\"post\" action=\"?act=submit\">
<input type=\"text\" name=\"entry\"><br><br>
<input type=\"submit\" value=\"Submit\">
</form>");
}
?>
Last edited by Moh; 22-04-2008 at 09:09 PM.
Just use re-captcha?
PM me for help.
ThanksBelow
PHP Code:<?php
if($_GET["act"] == "submit")
{
$entry = ($_POST["entry"]);
$answer = "123";
if($entry == $answer)
{
echo("Well Done! You got it right. The answer was $answer.. you can replace this with the form or what ever.");
} else {
echo("Ohh Noes! You got it wrong.. lol");
}
}
else
{
echo("Please enter the answer into the box below:<br>
<form method=\"post\" action=\"?act=submit\">
<input type=\"text\" name=\"entry\"><br><br>
<input type=\"submit\" value=\"Submit\">
</form>");
}
?>
@ above Jack's post, We are doing this Enterprise thing, and we have to make a profit. And my product is simply they pay 50p and get a card with code on it, they go to the website i'm going to set up, and enter code . If they win they get £5 (low budge)
Thanks again![]()
Want to hide these adverts? Register an account for free!