jd2007 Posted July 31, 2007 Share Posted July 31, 2007 Is there a way to hide variables which are being passed back of a url like this : index.php?action=post;board=1.0 ? Quote Link to comment https://forums.phpfreaks.com/topic/62616-is-there-a-way-to-hide-variables-which-are-being-passed-back-of-a-url/ Share on other sites More sharing options...
btherl Posted July 31, 2007 Share Posted July 31, 2007 You can use sessions. Then the data is stored on the server, and tracked using a cookie. Nothing is visible in the URL. Another option is using post instead of get. Post data is also not visible in the url. Quote Link to comment https://forums.phpfreaks.com/topic/62616-is-there-a-way-to-hide-variables-which-are-being-passed-back-of-a-url/#findComment-311693 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.