msa wrote:

I created a search form with multiple search parameters.  It returns nothing
if there is a space after their text entry or if they hit return in the text
area.

$coltitle_rsResults = "0";
if (isset($_GET['Title'])) {
$_GET['title'] = trim($_GET['title']);
  $coltitle_rsResults = (get_magic_quotes_gpc()) ? $_GET['Title'] :
addslashes($_GET['Title']);

where do i put the trim?

See above. You have to assign the result of trim() to a variable. My crystal ball (it's back off of loan now) says that was the issue. :)


--

---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



Reply via email to