Hi, I'm trying to redirect a page with many variables to another page where the variables must mantain their value without showing the variables on the URL when I come in the destination page. Is it possible? How can I do?
Thanks _
There are a number of methods. You can assign the data to session variables and let php handle them or you could store them in a db and then just assign one id to session or pass the id through the url yourself or you could have a form with nothing but hidden fields storing all the data and then on your href have <a href="javascript:document.formname.submit();"> HTH Rob