$result = mysql_query("SELECT image,itemname,category,description,price,supportu
rl,active FROM products WHERE description LIKE '%$mysearch[0]%' AND description LIKE '%$mysearch[$i]%' AND description LIKE '%$mysearch[$j]%'",$dbLink);
Just change the above to:
$result = mysql_query("SELECT image,itemname,category,description,price,supportu
rl,active FROM products WHERE description LIKE '%$mysearch[0]%' OR description LIKE '%$mysearch[$i]%' OR description LIKE '%$mysearch[$j]%'",$dbLink);
Good luck.