Ok here goes,
I am writing a webmail script. The scripts grabs the headers off of the server and creates texts and makes them links. These links tell another script which message the user wants to view.
I am submitting this through a _GET call.
So the link looks like this:
php/mail/view.php/item=4
However, in my page it shows up with the Session id which causes a message errror:
'php/mail/view.php?item=4&PHPSESSID=85bf22dda9bd01df798cb5688fc680e9
How do I get the code not to print the session id with the link?
Here is part of my code:
<a href="/php/mail/view.php?<? echo "item=$x";?>">
Am I doing this wrong?
Thanks,
Ron
I am writing a webmail script. The scripts grabs the headers off of the server and creates texts and makes them links. These links tell another script which message the user wants to view.
I am submitting this through a _GET call.
So the link looks like this:
php/mail/view.php/item=4
However, in my page it shows up with the Session id which causes a message errror:
'php/mail/view.php?item=4&PHPSESSID=85bf22dda9bd01df798cb5688fc680e9
How do I get the code not to print the session id with the link?
Here is part of my code:
<a href="/php/mail/view.php?<? echo "item=$x";?>">
Am I doing this wrong?
Thanks,
Ron