Forum Moderators: coopster
I wrote this simple little contact form that both me and a friend of mine are using on different servers. Now when the 'SEND' button is clicked the script checks if the name field is blank, ie:
if ($_POST['submit'])
{
if ($name == "")
{
echo "Error! Please enter your name";
}
rest of script blah blah
}
Everything works fine on my server, but on my friends server the script never gets passed the name field check even if the user HAS typed in their name.
Any ideas as to what might be causing this?
Thank you.