I am total newb here, so bare with me.
In the code below I would like to make the output of the 'url' an actual link.
<td><?php echo $row_thisone; ?></td>
Can someone please tell me the proper syntax.
I have tried many things with no luck.
Thanks in advance!
Here is the whole thing:
<table border="1">
<tr>
<td>site_name</td>
<td>link_text</td>
<td>url</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_thisone; ?></td>
<td><?php echo $row_thisone; ?></td>
<td><?php echo $row_thisone; ?></td>
</tr>
<?php } while ($row_thisone = mysql_fetch_assoc($thisone)); ?>
</table>
</body>
</html>
<?php
mysql_free_result($thisone);
mysql_free_result($hi);
?>