Re: Further help for PHP, SQL syntax, and register_globals

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Sugimoto wrote:
Bad query: You have an error in your SQL syntax near 'and Tit like and Aut
like and Auty like ' at line 4
[snip]
  foreach ($_GET as $value) {
     if (empty($value)) $value = "%";

You have an issue here. You're looping through $_GET and attempting to set a default value (which is good), but you're not making any changes to $_GET at all, just resetting the same $value variable to '%'.


foreach($_GET as $key=>$value)
{
  if(empty($value))
  { $_GET[$key] = '%'; }
}

--

---John Holmes...

Amazon Wishlist: www.amazon.com/o/registry/3BEXC84AB3A5E/

php|architect: The Magazine for PHP Professionals – www.phparch.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux