Re: [PHP] Passing query parameter which has value "###"

2003-09-08 Thread murugesan
Thanks for the reply.It is working -Murugesan - Original Message - From: "Chris Hayes" <[EMAIL PROTECTED]> To: "murugesan" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Monday, September 08, 2003 5:15 PM Subject: Re: [PHP] Passing query parameter whi

RE: [PHP] Passing query parameter which has value "###"

2003-09-08 Thread Angelo Zanetti
] Subject: Re: [PHP] Passing query parameter which has value "###" In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] says... > Not at all. I tried it. > When I see the properties of that page it is showing me > http://172.16.1.193/main.php?name=murugesh&id=#&[EM

Re: [PHP] Passing query parameter which has value "###"

2003-09-08 Thread Chris Hayes
At 13:04 8-9-03, you wrote: I passed value main.php?name=$name&id=$id&id1=$id1 to next page where $id has value "###" In the next page I was not able to get the $id and $id1 values and I am able to get the two values $id1 and $name when I used main.php?name=$name&id1=$id1 What might be the problem

Re: [PHP] Passing query parameter which has value "###"

2003-09-08 Thread David Robley
rugesan > > - Original Message - > From: "Angelo Zanetti" <[EMAIL PROTECTED]> > To: "[EMAIL PROTECTED]" <[EMAIL PROTECTED]>; "murugesan" > <[EMAIL PROTECTED]> > Sent: Monday, September 08, 2003 5:06 PM > Subject: RE: [PHP] Pas

Re: [PHP] Passing query parameter which has value "###"

2003-09-08 Thread murugesan
ot;[EMAIL PROTECTED]" <[EMAIL PROTECTED]>; "murugesan" <[EMAIL PROTECTED]> Sent: Monday, September 08, 2003 5:06 PM Subject: RE: [PHP] Passing query parameter which has value "###" > try this > > > main.php?name=" . $name . "&id=&

RE: [PHP] Passing query parameter which has value "###"

2003-09-08 Thread Angelo Zanetti
try this main.php?name=" . $name . "&id=" . $id . "&id1=" . $id1 . " HTH -Original Message- From: murugesan [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2003 1:05 PM To: [EMAIL PROTECTED] Subject: [PHP] Passing query parameter which has

[PHP] Passing query parameter which has value "###"

2003-09-08 Thread murugesan
I passed value main.php?name=$name&id=$id&id1=$id1 to next page where $id has value "###" In the next page I was not able to get the $id and $id1 values and I am able to get the two values $id1 and $name when I used main.php?name=$name&id1=$id1 What might be the problem? -Thanks & regards, Murug