This is a discussion on How to hide URL but it's not from a form just a link ? within the PHP General forums, part of the PHP Programming Forums category; How can I hide this link so value can't be changed? I don't want to change anything at ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
How can I hide this link so value can't be changed?
I don't want to change anything at the server level, and its not from a form so I cant do a post -vs- a get. http://www.abcd.com/SearchSet.php?se...1&value=WOR032 Thanks ! |
|
|||
|
Hi,
Saturday, July 12, 2003, 4:05:34 AM, you wrote: J> How can I hide this link so value can't be changed? J> I don't want to change anything at the server level, and its not from a J> form so I cant do a post -vs- a get. J> http://www.abcd.com/SearchSet.php?se...1&value=WOR032 J> Thanks ! Encrypt then base64_encode the query string before adding, that way they can't stuff with it. -- regards, Tom |
|
|||
|
What about sessions? Depends on your circumstances and the flow of
pages, but storing all these vars in a session, then only passing the session id around in the URL could be an alternative Justin On Saturday, July 12, 2003, at 12:21 PM, Tom Rogers wrote: > Hi, > > Saturday, July 12, 2003, 4:05:34 AM, you wrote: > J> How can I hide this link so value can't be changed? > J> I don't want to change anything at the server level, and its not > from a > J> form so I cant do a post -vs- a get. > > J> > http://www.abcd.com/ > SearchSet.php?searchby=cust_no&search=1&value=WOR0 32 > > J> Thanks ! > > Encrypt then base64_encode the query string before adding, that way > they can't stuff with it. > > -- > regards, > Tom > > > -- > PHP General Mailing List (http://www.php.net/) > To unsubscribe, visit: http://www.php.net/unsub.php > > --- > [This E-mail scanned for viruses] > > |