this is my code:
header("Location: ?pid='".$_GET['pid']."'");
die();
When I write a simple echo $_GET['pid']; the value is good but then when I introduce this variable in the header it return something like 27%27 and thats not true true value
When I use urlencode the probleme persist:
header("Location: ?pid=". urlencode($_GET['pid']);
Whats the problem here?
Thank you
$_GET['pid']? CAN YOU PLEASE TELL?header("Location: ?pid=".$_GET['pid']);