pradeep79 Posted April 10, 2007 Share Posted April 10, 2007 Hi all, I'm trying to disguise the values of a query string when using GET to send the data across to another page. I have seen the long greek words that appear in hotmail and other websites. Can anyone tell me how I can do that in PHP? Is there any function in PHP that can do that? Please help me! Link to comment https://forums.phpfreaks.com/topic/46502-query-string-disguise/ Share on other sites More sharing options...
kenrbnsn Posted April 10, 2007 Share Posted April 10, 2007 Why are you putting the values on the URL? Can you use Sessions to handle the transfer? Ken Link to comment https://forums.phpfreaks.com/topic/46502-query-string-disguise/#findComment-226286 Share on other sites More sharing options...
pradeep79 Posted April 10, 2007 Author Share Posted April 10, 2007 Why are you putting the values on the URL? Can you use Sessions to handle the transfer? Ken Thanks Ken, but I'm trying to create a link, which holds the unique id as a parameter. There will be several links, based on the database output. Each link will have its unique id that will be passed to the next page when clicked. I haven't got a clue how to do this with sessions.. Link to comment https://forums.phpfreaks.com/topic/46502-query-string-disguise/#findComment-226298 Share on other sites More sharing options...
Glyde Posted April 10, 2007 Share Posted April 10, 2007 base64_encode()? There's really no good way of doing this though, because any encryption method that can be undone by you can be just as easily undone by someone else. Sessions or DB's are the way to go. Link to comment https://forums.phpfreaks.com/topic/46502-query-string-disguise/#findComment-226302 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.