Re: [PHP] pass var through URL String

2002-09-19 Thread Gary
I was wrong, it is passing $bname. I have got it down to a syntax error by using. $sql = "SELECT * FROM bugs WHERE bname = {$_GET['bname']}"; gary Gary wrote: > I don't think it is being passed. I think I am going to have to figure > out how to pass bname in the link using pear.With pear bn

Re: [PHP] pass var through URL String

2002-09-19 Thread Gary
ge - >From: "Gary" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Thursday, September 19, 2002 2:50 PM >Subject: Re: [PHP] pass var through URL String > > > > >>Tried that already and get an error using $_GET['bname'] >>

Re: [PHP] pass var through URL String

2002-09-19 Thread Kevin Stone
gt; Sent: Thursday, September 19, 2002 2:50 PM Subject: Re: [PHP] pass var through URL String > Tried that already and get an error using $_GET['bname'] > T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or > T_NUM_STRING > > using $_GET[bname] without the quo

Re: [PHP] pass var through URL String

2002-09-19 Thread Gary
7;] to retrieve the var. > -Kevin > > - Original Message - > From: "Gary" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, September 19, 2002 1:54 PM > Subject: [PHP] pass var through URL String > > > >>Hi All, >

Re: [PHP] pass var through URL String

2002-09-19 Thread Kevin Stone
Pass the vars the same way. Use $_GET['bname'] to retrieve the var. -Kevin - Original Message - From: "Gary" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, September 19, 2002 1:54 PM Subject: [PHP] pass var through URL String > Hi All,

[PHP] pass var through URL String

2002-09-19 Thread Gary
Hi All, Using a link $bname I could pass $bname to another page and using "SELECT * FROM table WHERE bname = \"$bname\""; I could get all I need from the db on the new page. Now that globals have been turned off and superglobals are replacing them. How should I pass and catch the var? TIA Gar