Hi all,
I’m looking for some very easy(!) tutorials that will teach me how to take data from ‘x’ rows in a MYSQL table and output values in each field, so if for example if I had a html table like this:
<table width="95%" border="0">
<tr bgcolor="#eeeeee">
<td><span class="black_text"><?php echo $firstname; ?></span></td>
</tr>
<tr>
<td><span class="black_text"><?php echo $lastname; ?></span></td>
</tr>
<tr>
<td><span class="black_text"><?php echo $dob; ?></span></td>
</tr>
</table>
It would replicate that html table and output it on the page depending on how many records were saved in the database table, outputting all the relevant data for each record ?
Can anyone please provide links?
Thanks
Chris