Jump to content

How Do I Make A Longer Url?


Vink

Recommended Posts

Hi!I am running a datingsite and I have implement a Greetingcard system so members could send each other a greetingcard...very nice option.The only way to pass the vars (name and email) to the program is to put them in the url...this works very well...but for 2 seconds the compleet adres (with emailadress and name) is shown in the adressbar at the bottom of the screen ......( same bar where you see the url when you mouseover a link)This is not good because the emailadress of a member is private.I have tried about everything to remove it but with no luck...The only thing that can be done is to make the url sóóóó long that the emailadress and name are outsite the adressbarand therefor can't be seen.Is there a way to make this adress longer with ineffective characters?the url is: //mydomain/ecards/index.php?reply={$user.email}&from_name={$user.username}greetingsParis

Link to comment
Share on other sites

Use POST instead of GET. With GET you have to have the information on the URL, but with POST it submits the form without using the URL. Or if you want to hold that information longer than 2 pages, you could use a session to hold that data.

$_SESSION['greeting'][0] = $name;$_SESSION['greeting'][1] = $email;

When you are done with the session unset it. This clears the data.

unset($_SESSION['greeting']);

http://www.w3schools.com/php/php_post.asphttp://www.w3schools.com/php/php_sessions.asp

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...