View Single Post

Old 08-03-2007, 16:35   #9 (permalink)
Wistow
Moderator
 
Join Date: Mar 2005
Location: Barnsley, UK
Posts: 1,001
iTrader: 0 / 0%
Wistow has a reputation beyond reputeWistow has a reputation beyond reputeWistow has a reputation beyond reputeWistow has a reputation beyond reputeWistow has a reputation beyond reputeWistow has a reputation beyond repute
Default

Change
Code:
if ($trimmed == "")
{
echo "<p>Please enter a search...</p>";
exit;
}
to
Code:
if(empty($trimmed))
{
echo "<p>Please enter a search...</p>";
exit;
}
Wistow is offline   Reply With Quote