[PHP] is it possible to have the following URL?

2003-09-22 Thread Susan Ator
I am passing 3 pieces of information on every URL. For example: https://url_location.org/page.php?SID=$SIDuid=$uidELEM_ID=$id I need to be able to return to a previous page using an anchor tag like so: https://url_locaion.org/prev_page.php#tag?SID=$SIDuid=$uidELEM_ID=$id So far it doesn't

Re: [PHP] is it possible to have the following URL?

2003-09-22 Thread Erwin Kerk
This should work: https://url_locaion.org/prev_page.php?SID=$SIDuid=$uidELEM_ID=$id#tag Erwin Susan Ator wrote: I am passing 3 pieces of information on every URL. For example: https://url_location.org/page.php?SID=$SIDuid=$uidELEM_ID=$id I need to be able to return to a previous page using

RE: [PHP] is it possible to have the following URL?

2003-09-22 Thread Susan Ator
Thank you so much. That worked perfectly. Don't know why I didn't think of trying the anchor tag there. susan -Original Message- From: Erwin Kerk [mailto:[EMAIL PROTECTED] Sent: Monday, September 22, 2003 11:48 AM To: [EMAIL PROTECTED] Subject: Re: [PHP] is it possible to have the