I would like to call a script and pass variables to it without using a form or using header(). My understanding is that using variables embeded in header("Location:myaddress?var=$var") is simply a type of GET method and I would like to keep data out of $_GET for security purposes.
Is there any way I can call a script and pass variables without using a form to post or a header call? I'm not sure session variables are appropriate, but maybe they are the answer.
Can anybody enlighten me? Thanx for the help.