View Single Post
Old 11-05-2012, 02:25 PM   PM User | #1
vineet
Regular Coder

 
Join Date: Jun 2008
Posts: 173
Thanks: 2
Thanked 9 Times in 9 Posts
vineet is an unknown quantity at this point
search query product name

hi all

First i want to match the search keyword with the product name in product table.

If the match is found then i want to fetch all the product details from product table for that product.

so i would like to know whether my code is fine or not.

can this be shortened

PHP Code:
<?
$searchword 
$_REQUEST['searchword'];
$qry "select product_name from product_table where product_name LIKE '%$searchword%'";
$result mysql_query($qry);
if(
mysql_num_rows($result) > 0)
{
    
$searchqry "select * from product_table where product_name LIKE '%$searchword%'";
    
$searchresult mysql_query($searchqry);
    while(
$searchrow mysql_fetch_array($searchresult))
    {
    
//echo product_details;
    
}
}    
?>
vineet
vineet is offline   Reply With Quote