Hi!
I am working with Dreamweaver in a project and I 'd like to have some help with hyperlinks...
I ve created a recordset in which i call from my database, a list of products, and i display them in a dynamic table..
The code inside the table looks like this:
<table border="0" align="center" cellpadding="0" cellspacing="0">
<?php do { ?>
<tr>
<td></td>
</tr>
<tr>
<td><div align="center"><?php echo $row_GINS['B_Name']?></div></td></tr></table>
The part of the php code with the red letters...calls from the recordset, names of products, of my database.
My problem is: How do I link every name of my product to each product PHP page???