What is wrong with my <a ref statement in this html code?

  • Thread starter Thread starter Michael L
  • Start date Start date
M

Michael L

Guest
The correct data gets loaded into the table, but the text does not act like a hyper link. Is there something wrong with this:

echo "<td>" . "<a ref='" . $phpurl_text . "'><font face='Arial' size='3'>" . $row['col1'] . "</font></a></td>";
 
try this:

echo "<td>" . "<a href='" . $phpurl_text . "'><font face='Arial' size='3'>" . $row['col1'] . "</font></a></td>";
 
Back
Top