Hi Guys,
I have a table with 3 rows which interrigates an MySQL database for data:
<table width="100%" border="0">
<tr>
<td width="33%"><?php echo $name; ?></td>
<td width="33%"><?php echo $by; ?></td>
<td width="33%">CLICK HERE LINK????</td>
</tr>
</table>
Now this MySQL database can have lots of records in one table given unique id's as they are added in an admin section, so I want my php page to do two further things:
1) Dynamically insert another 3 rows or every record there is in my MySQL database table named 'cinema_reviews'.
2) In the last table row dynamically display the link or each particular record which reads 'click here'.
Not sure how to do this though - anyone got any ideas?
Ta
Chris