RE: [PHP] Reading URL is changed

2003-09-19 Thread Vail, Warren
Not sure if this is what you are looking for, but have you tried; a href = this.php?L=1stlinkFirst Link/a a href= this.php?L=2ndlinkSecond Link/a and then in this.php $link = $_GET[L]; Warren Vail -Original Message- From: Dan J. Rychlik [mailto:[EMAIL PROTECTED] Sent: Friday,

Re: [PHP] Reading URL is changed

2003-09-19 Thread andu
On Fri, 19 Sep 2003 19:10:46 -0500 Dan J. Rychlik [EMAIL PROTECTED] wrote: I am trying to figure out the best way to accomplish this task. I have one file that performs a certain amount of functions based on a user link choice. All the links point to the same document. I know I need a

Re: [PHP] Reading URL is changed

2003-09-19 Thread Dan J. Rychlik
That seems to work pretty good. Thank you for this technique. -Dan - Original Message - From: Vail, Warren [EMAIL PROTECTED] To: Dan J. Rychlik [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, September 19, 2003 7:32 PM Subject: RE: [PHP] Reading URL is changed Not sure

Re: [PHP] Reading URL is changed

2003-09-19 Thread Dan Anderson
First of all, you can use Javascript to submit a form when the link is pressed. Andu has a good idea too, but I figured I'd elaborate: If you create a form like: FORM METHOD=GET ACTION='http://www.foo.com' INPUT TYPE=HIDDEN NAME='foo' VALUE='bar' INPUT TYPE=HIDDEN NAME='bar' VALUE='foo'

RE: [PHP] Reading URL is changed

2003-09-19 Thread Warren Vail
: Re: [PHP] Reading URL is changed First of all, you can use Javascript to submit a form when the link is pressed. Andu has a good idea too, but I figured I'd elaborate: If you create a form like: FORM METHOD=GET ACTION='http://www.foo.com' INPUT TYPE=HIDDEN NAME='foo' VALUE='bar' INPUT TYPE