I am new to php and am building a search function for my website. The problem is I cannot seem to make the Aa> tags work to make the link I keep on getting parse error. could someone tell me how to make $title a link. I can pretty much do everything else from there. Thanks in advance.:!:
while ($row = mysql_fetch_array($result))
{
echo "<center><table>";
$count = 1 + $s;
$title = $row["location"];
echo "<tr>
<td>";
echo $title;
echo "</td><td>";
echo "</td></tr>";
$count++;
echo "</table></center>";
}