Re: [PHP] SQL Warning

2002-04-24 Thread The_RadiX
nifer Downey'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, April 24, 2002 10:05 PM Subject: RE: [PHP] SQL Warning > > -Original Message- > > From: Jennifer Downey [mailto:[EMAIL PROTECTED]] > > Sent: 24 April 2002 04:46 > > > &g

RE: [PHP] SQL Warning

2002-04-24 Thread Ford, Mike [LSS]
> -Original Message- > From: Jennifer Downey [mailto:[EMAIL PROTECTED]] > Sent: 24 April 2002 04:46 > > Would you please direct your attention to this URL > > http://testphp.netfirms.com/code1.html > > Look at the bottom where the big orange commented syntax is > and explain what > is

RE: [PHP] SQL Warning

2002-04-23 Thread Martin Towell
The reason why I said that is 'cause the array was inside quotes, so quoting again would break out of the original quotes -Original Message- From: Miguel Cruz [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 2:03 PM To: Jason Murray Cc: [EMAIL PROTECTED] Subject: RE: [PHP

RE: [PHP] SQL Warning

2002-04-23 Thread Miguel Cruz
On Wed, 24 Apr 2002, Jason Murray wrote: > {$config["prefix"]} > > I think this should be > > ${config["prefix"]} Those are equivalent. miguel -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] SQL Warning

2002-04-23 Thread Martin Towell
or make it $config[prefix] -Original Message- From: Jason Murray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 24, 2002 1:51 PM To: 'Jennifer Downey'; [EMAIL PROTECTED] Subject: RE: [PHP] SQL Warning > Would you please direct your attention to this

RE: [PHP] SQL Warning

2002-04-23 Thread Jason Murray
> Would you please direct your attention to this URL > > http://testphp.netfirms.com/code1.html > > Look at the bottom where the big orange commented syntax is > and explain what is going on there? {$config["prefix"]} I think this should be ${config["prefix"]} ... also, it's handy to actual