Suppressing URL info when passing with links

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
marseille
Forum Newbie
Posts: 1
Joined: Fri Jan 09, 2004 2:20 pm
Location: Fairfield, IA

Suppressing URL info when passing with links

Post by marseille »

I know you can suppress URL data from showing by using a POST, but is there a way to do it when passing values via links, i.e.:

<a href="FSSaction.php?retnam=bob">Press to continue</a>

which presents this URL:

http://127.0.0.1/FSS/FSSaction.php?retnam=bob

Thanks
Fataqui
Forum Newbie
Posts: 10
Joined: Fri Jan 09, 2004 7:47 pm

Post by Fataqui »

Hi

Sorry to say 'NO' HTTP rules based on method GET only allow for the query to be passed by the url! You an use sessions to store your values, and pass the session id that will be used to return the session var(s) on any page in your service!


F!
Post Reply