I am trying to pass a variable within a header link. I have tried below code
$name = "mike";
if($name != "lopan"){
header("Location:error-page.php?$errorMssg=Please enter information?");
}
This page redirect to location but doesn't pass the variable that contains the message. But when i create a simple link with values like this:
<a href="error-page.php?$errorMssg=so what happened there buddy?">link</a>
it passes it just fine.
Any ideas what i am doing wrong? or i can not pass information with headers?