Jump to content

search problem


squiblo

Recommended Posts

I have 1 problem with my searching, if I search for anything that is less that 3 characters long, it echos "your search must be more that 3 characters long" but also it will echo "You searched for L. 1 result(s) found". and it will show the results with the letter L in it

<?php

$search = $_GET['search'];
if(strlen($search)<3)
{
echo "Your search must be at least 3 characters long.";
$div_height = 'height:500px;';
$img_height = 'height="500"';
}
else
{
$div_height = 'height:1200px;';
$img_height = 'height="1200"'; 
}
?>


<div id="wb_Shape2" style="position:absolute;top:-60px;left:-15px;<?php echo $div_height; ?>width:793px;z-index:-1;" align="center">
<img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0"<?php echo $img_height; ?> width="793">
</div>



<?php
//connect to our database
mysql_connect("localhost","***","***");
mysql_select_db("***");

//explode our search term
$search_exploded = explode(" ",$search);

foreach($search_exploded as $search_each)
{
//construct query
$x++;
if ($x==1)
	$construct .= "username LIKE '%$search_each%'";
else
	$construct .= " OR username LIKE '%$search_each%'";			
}
//echo out construct

$construct = "SELECT * FROM members WHERE $construct";
$run = mysql_query($construct);

$foundnum = mysql_num_rows($run);

if ($foundnum==0)
echo "You searched for <b>$search</b>. No results found.";
else
{
echo "You searched for <b>$search</b><br>$foundnum result(s) found!<p><hr size='1' width='387'color='#E6E6E6'>";

while ($runrows = mysql_fetch_assoc($run))
{
	//get data
	$state = ucwords($runrows['state']);
	$url = $runrows['url'];
	$username = ucwords($runrows['username']);
	$imagelocation = $runrows['imagelocation'];
	if ($imagelocation == "") 
	{
		$imagelocation = "./profileimages/noprofilepic.jpg";
	} 
	echo "
	<img src ='$imagelocation' width='100' height='105' border='0' align='left' style='padding-right:10px'><br>
	<b>$username</b><br>
	$state<br>
	<a href='$url'>View Profile</a><br><br><br>
	<hr size='1' width='387' align='left' color='#E6E6E6'>
	";
}
}   
?>

Link to comment
Share on other sites

Try some thing like this

 

<div id="wb_Shape2" style="position:absolute;top:-60px;left:-15px;<?php echo $div_height; ?>width:793px;z-index:-1;" align="center">
<img src="/Images/body_img.jpg" id="Shape2" align="top" alt="" title="" border="0"<?php echo $img_height; ?> width="793">
</div>


<?php

$search = $_GET['search'];
if(strlen($search)<3)
{
   echo "Your search must be at least 3 characters long.";
   $div_height = 'height:500px;';
   $img_height = 'height="500"';
}
else
{
   $div_height = 'height:1200px;';
   $img_height = 'height="1200"'; 

//connect to our database
mysql_connect("localhost","***","***");
mysql_select_db("***");

//explode our search term
$search_exploded = explode(" ",$search);

foreach($search_exploded as $search_each)
{
   //construct query
   $x++;
   if ($x==1)
      $construct .= "username LIKE '%$search_each%'";
   else
      $construct .= " OR username LIKE '%$search_each%'";         
}
//echo out construct

$construct = "SELECT * FROM members WHERE $construct";
$run = mysql_query($construct);

$foundnum = mysql_num_rows($run);

if ($foundnum==0)
   echo "You searched for <b>$search</b>. No results found.";
else
{
   echo "You searched for <b>$search</b><br>$foundnum result(s) found!<p><hr size='1' width='387'color='#E6E6E6'>";

   while ($runrows = mysql_fetch_assoc($run))
   {
      //get data
      $state = ucwords($runrows['state']);
      $url = $runrows['url'];
      $username = ucwords($runrows['username']);
      $imagelocation = $runrows['imagelocation'];
      if ($imagelocation == "") 
      {
         $imagelocation = "./profileimages/noprofilepic.jpg";
      } 
      echo "
      <img src ='$imagelocation' width='100' height='105' border='0' align='left' style='padding-right:10px'><br>
      <b>$username</b><br>
      $state<br>
      <a href='$url'>View Profile</a><br><br><br>
      <hr size='1' width='387' align='left' color='#E6E6E6'>
      ";
   }
}   

}


?>

 

Try that, really quick and dirty but it may be what you're after.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.