View Single Post
  #1 (permalink)  
Old 07-11-2008, 09:02 AM
Lee's Avatar
Lee Lee is offline
PT Staff*
Awards Showcase
Quality Tutorial 
Total Awards: 1
Join Date: Jun 2007
Location: Blackpool, UK
Posts: 616
iTrader: (0)
Lee is just really niceLee is just really niceLee is just really niceLee is just really nice
[SOLVED] Display link :/

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?

Last edited by Lee : 07-11-2008 at 09:05 AM.