Can I hide the variables inside url?
My code is similar to the following:
if ($permet == 1)
{
$Msg = "You dont have permission";
header ("Location: error.php?msg=$Msg");
}
When I am redirected to the page error.php, I get the following URL inside the address bar:
.........../error.php?msg=$Msg
And anybody can change the value of $Msg, so How can I hide variables ???
Thx..