Hello,
I have an HTML table with php variables in it and I'd like to be able to hyperlink the value $train to a website URL stored in another php variable $url. How would I modify the code below to be able to do this?
<table> <tr> <td width="8%" align="center"><font face="Arial"><?=$train?></font></td> </tr> </table>
Thanks,
Damian
Something like this??
<table> <tr> <td width="8%" align="center"><font face="Arial">
<?php echo"<a href = '$url'>$train</a>"; ?>
</font></td> </tr> </table>