Hyperlink in Table

kacperos

New Member
I juz wana make the 'url' row data as hyperlink. Someone help plz. I already tried but the data is not displaying in the table neither the hyperlink.\[code\] while ($rows = mysql_fetch_assoc($run))
{
echo "<tr>";
echo "<td>". $rows['file_ref'] ."</td>";
echo "<td>". $rows['file_name'] ."</td>";
echo "<td>". $rows['owner'] ."</td>";
echo "<td><a href="http://stackoverflow.com/questions/3938903/. $rows['url'] . "></a></td>";
echo "<td><a href=http://stackoverflow.com/questions/3938903/add_borrower.php?id=" . $rows['id'] . ">Borrow</a></td>";
echo "</tr>";
}
echo "</table>";
}\[/code\]Thankz.
 
Back
Top