Please, I m newbie!
How to create some statement like this:
if ($something=="") { echo("Please fill out this fuc... form!"); }else {//automaticly go to another page.php//
} Thnks
if (!$something) { echo "Please fill out this fuc... form!"; } else{ header("Location: somepage.php"); }