RE: [PHP] Re: how to pass variable for $_GET

2003-03-23 Thread Daevid Vincent
LECT * FROM foo WHERE blah = '".$_GET['othervar']."'"; > -Original Message- > From: DomIntCom [mailto:[EMAIL PROTECTED] > Sent: Sunday, March 23, 2003 2:08 PM > To: [EMAIL PROTECTED] > Subject: [PHP] Re: how to pass variable for $_GET &g

[PHP] Re: how to pass variable for $_GET

2003-03-23 Thread DomIntCom
thanks - found a solution... both method's worked for me "Nate" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > stripslashes("\'2003-1-3 00:00:01\' AND \'2003-3-10 23:59:59\'"); > > "Domintcom" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > ok - found urldecode w

[PHP] Re: how to pass variable for $_GET

2003-03-22 Thread Nate
stripslashes("\'2003-1-3 00:00:01\' AND \'2003-3-10 23:59:59\'"); "Domintcom" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > ok - found urldecode which is now giving me the following; > > \'2003-1-3 00:00:01\' AND \'2003-3-10 23:59:59\' > > original string; > > '2003-1-3 00:00:01'

Re: [PHP] Re: how to pass variable for $_GET

2003-03-22 Thread Leif K-Brooks
http://www.php.net/manual/en/ref.info.php#ini.magic-quotes-gpc DomIntCom wrote: ok - found urldecode which is now giving me the following; \'2003-1-3 00:00:01\' AND \'2003-3-10 23:59:59\' original string; '2003-1-3 00:00:01' AND '2003-3-10 23:59:59' "Domintcom" <[EMAIL PROTECTED]> wrote in me

[PHP] Re: how to pass variable for $_GET

2003-03-22 Thread DomIntCom
ok - found urldecode which is now giving me the following; \'2003-1-3 00:00:01\' AND \'2003-3-10 23:59:59\' original string; '2003-1-3 00:00:01' AND '2003-3-10 23:59:59' "Domintcom" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > ok - I know how to pass these variables by append