RE: [PHP] newbie question about variables

2001-04-09 Thread Cheng, Kynan (London)
- > From: PHPBeginner.com [SMTP:[EMAIL PROTECTED]] > Sent: Monday, April 09, 2001 3:00 PM > To: Cheng, Kynan (London); [EMAIL PROTECTED] > Subject: RE: [PHP] newbie question about variables > > Yes, you were right, this works just the way you wrote. > > And yes, there i

RE: [PHP] newbie question about variables

2001-04-09 Thread PHPBeginner.com
-Original Message- From: Cheng, Kynan (London) [mailto:[EMAIL PROTECTED]] Sent: Monday, April 09, 2001 5:37 PM To: '[EMAIL PROTECTED]' Subject: RE: [PHP] newbie question about variables Hi, I have not coded script in html before, so I was wondering if someone could look this

RE: [PHP] newbie question about variables

2001-04-09 Thread Cheng, Kynan (London)
javascript method? Thanks Kynan > -Original Message- > From: Philip Olson [SMTP:[EMAIL PROTECTED]] > Sent: Sunday, April 08, 2001 10:52 PM > To: Victor > Cc: [EMAIL PROTECTED] > Subject: Re: [PHP] newbie question about variables > > &

Re: [PHP] newbie question about variables

2001-04-08 Thread liman
Victor escribió: > > Hello, > > Is there any (easy) way to let a user to set the value of a > variable by simply clicking on a hyperlink on a web page? > I mean if I have a 3 links on a page if the user clicks on image1 to > set a variable $var=1,if clicks on image2 to set it as > $var=2,et

Re: [PHP] newbie question about variables

2001-04-08 Thread Philip Olson
Something like the following HTML : And in foo.php have : print $var; // 1 or 2 or 3 Also consider the following : To have it load the current page rather then foo.php. regards, philip On Mon, 9 Apr 2001, Victor wrote: > Hello, > > Is there any (easy) way to let a user t

Re: [PHP] newbie question about variables

2001-04-08 Thread eschmid+sic
On Mon, Apr 09, 2001 at 12:19:57AM +0300, Victor wrote: > Is there any (easy) way to let a user to set the value of a > variable by simply clicking on a hyperlink on a web page? > I mean if I have a 3 links on a page if the user clicks on image1 to > set a variable $var=1,if clicks on image2

[PHP] newbie question about variables

2001-04-08 Thread Victor
Hello, Is there any (easy) way to let a user to set the value of a variable by simply clicking on a hyperlink on a web page? I mean if I have a 3 links on a page if the user clicks on image1 to set a variable $var=1,if clicks on image2 to set it as $var=2,etc. Any suggestions (including RT