At the moment I am using the following to redirect to a new page;
header("Location: buy.php");
I would like to be able to redirect a load of variables across to it via the POST method. Idont want to use the get method as buy.php?something=$something. I want to be able to 'hide it' a bit more instead of directly showing it in the query string.
Does anyone know if this is possible, and if so, how?
Thanks a lot