Hey,
I have a little problem when displaying a link where it won't let me click the link even though it acts like one.
Here is the relevant code:
PHP Code:
$n = 1;
while($rows = mysql_fetch_object($result))
{
$topic .= $n . ") <a herf=\"http://localhost/1/index.php?showtopic=" . $rows->tid . "\">" . $rows->title . "</a ><br />";
$n++;
}
This works fine to get the text to display and what not but the link just wont work when it's echo'ed onto the page, anyone know why?