Try this, there is a parse error, closing the mysql_query forgot a double quote...
Copy paste this code... it should work
What kind of programm do you use to make your scripts? use editplus.
Then you see nicely where the parse error is.
Kind regards,
Gerry
<?php
mysql_connect("localhost","1245","12345678") or die("Unable to connect");
@mysql_select_db("hot_dogs") or die("Unable to select database");
$result = mysql_query("SELECT * FROM url_store WHERE title, description, keywords, location, channel LIKE '%$searchterm%'");
$num = mysql_num_rows($result);
if ($num != "0") {
while ($row = mysql_fetch_array($result)) {
echo "$row[1], $row[2], $row[3], $row[4], $row[5]";
}
} else {
echo "No matches";
}
?>