I would like to view this database with the Flyer variable displaying as a link that will open in a new window. Can anyone tel me how?
Here's the code:
<body>
<table width="80%" border="0" align="center">
<tr>
<td>
<div align="center">
<table border="1" cellpadding="5" cellspacing="1">
<tr>
<td></td>
<td align="center">Event Title</td>
<td align="center">Host</td>
<td align="center">Flyer</td>
</tr>
<?php do { ?>
<tr>
<td><?php echo $row_events['id']; ?></td>
<td><?php echo $row_events['title']; ?></td>
<td><?php echo $row_events['host']; ?></td>
<td>
<?php echo $row_events['flyer']; ?> </td>
</tr>
<?php } while ($row_events = mysql_fetch_assoc($events)); ?>
</table>
</div></td>
</tr>
</table>
</body>
</html>
<?php
mysql_free_result($events);
?>
Thanks for any help
