Hi folks, I'm a PHP newbie confused about creating dynamic links rendered after a MySQL query.
After the MySQL query I render a table:
<table>
<?php do { ?>
<tr>
<td><?php echo $row_Recordset1['company']; ?></td>
<td>
<?php echo $row_Recordset1['description']; ?></td> </tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
It generates a table of companies and the associated descriptions.
My question is: how do I create a link of the form company.php that links off of the c'company' output...
thanks for any help.