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
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 quotes Undefined index: bname Gary Kevin Stone wrote: > Pass the vars the same way. Use $_GET['bname'] to retrieve the var. >

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, > Using a link $bname I could pass