I know how to bind a variable in to a request like this;
header("location:../dashboard.php?name=name");
but I want the variables to be hidden in the url, like this;
header("location:../dashboard.php");
and send the variable using POST method
how can I do this without using sessions or cookies?
thank you.