Hello! Ever since ourdesktops.com went away, I've been dying to get a simple alternative up and running, a simple up-loader script with a CAPTCHA. The up-loader script and CAPTCHA are up and running, but when the CAPTCHA script is completed successfully it will display a message, Instead I want it to redirect to another page using the normal HTML meta tag. I will give you a small sample of what I want, and what I'm trying to do below:
if($userguess!=$key)
{
echo '<p style="color:#FF0000; font-family : Verdana, Arial, sans-serif; text-align:center;">
Incorrect, better luck next time.</p>';
}
else
{
'<META http-equiv="refresh" content="5;URL=upload.php">
</META>' ;
}
}
can anyone help?
if($userguess!=$key)
{
echo '<p style="color:#FF0000; font-family : Verdana, Arial, sans-serif; text-align:center;">
Incorrect, better luck next time.</p>';
}
else
{
'<META http-equiv="refresh" content="5;URL=upload.php">
</META>' ;
}
}
can anyone help?