So i have a form that when the user presses submit, the form throws them to a processing file and if any of those fields values dont validate, then that process form sends the user back to the page they came from. I thought it useful to add a message telling them whats wrong so.....
The form page (contact.php) for example is constructed like this (below)
<?php
$errormssg = stripslashes(str_replace("'","",$_GET['errormssg']));
if($errormssg){
echo $errormssg;
}
?>
<html>
<form fields here >
</html>
and the php process form is constructed more or less like this (below )
<?php
<form validation code goes here and if it fails, then throws them back to form page exactly
like this (below)
header("Location:contact.php?errormssg='You seem to have forgotten one of the fields'");
?>
The problem im getting is that, when i first load the contact page, i get an error which im going to assume is because when the contact page is first loaded, $_GET['errormssg'] doesnt exist.
ive tried things like
if($_GET['errormssg']){
echo $errormssg;
}
And still errors, am i going about this in the wrong way?
All im essentially trying to do is, that when contact page loads, the ONLY way that error message is going to spit out a message is if the user got sent back from the processing form. So if the message exists then echo it in the designated area, else dont show anything.
How can i do this?? thanks in advanced.


header("Location:"...)should contain the full URL. w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.30 – honyock Dec 5 '12 at 17:04