RE: [PHP] Reading URL is changed

2003-09-19 Thread Warren Vail
: PHP List Subject: 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: The browser visits the URL: http://www.foo.com?foo=bar&bar=foo

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: The browser visits the URL: http://www.foo.com?foo=bar&bar=foo This is called GET method in a form. Do a google search.

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: [PH

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 Vail, Warren
ject: [PHP] Reading URL is changed 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 control structure that reads what link was r

[PHP] Reading URL is changed

2003-09-19 Thread Dan J. Rychlik
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 control structure that reads what link was read but Im not sure how to do this.