I\'ve read the thread with subject \'variable\' in which is advised to place a variable in the url making it available to the next page like this:
echo \"<a href=\'/nextpage?vaname=$varvalue\'>Link</a>\";
But this always shows the varvalue in the url of the page that is opened, for example:
http://www.mydomain.com/showcompany.php?id=123
Is there any way to keep this info (id=123) hidden for the user? This looks something like the difference between POST and GET in a form.
Arne