[snip]Bad query: You have an error in your SQL syntax near 'and Tit like and Aut like and Auty like ' at line 4
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