I have been following this tutorial to make a search engine. I am getting an error(check on the website, LINK. Try to search and you get an error)
Code:
$query = mysql_query($query);
$numrows = mysql_num_rows($query);
if($numrows > 0){
while($row = mysql_fetch_assoc($query)){
$id = $row['id'];
$title = $row['title'];
$description = $row['description'];
$keywords = $row['keywords'];
$link = $row['link'];
echo "<h2><a href='$link's>$title</a></h2>
$description<br /><br />";
}
}else
echo "No Results found for <b>$k</b>";
//disconnect
mysql_close();
?>