Hi,
I have the following code
<center>
<h3><font face="Arial, Helvetica, sans-serif">Sport Related Items</font></h3>
<ol>
<?php do { ?>
<li>
<?php
echo $row_rs_members['item'];
?>
</li>
<br>
<br>
<?php } while ($row_rs_members = mysql_fetch_assoc($result)); ?>
</ol>
</center>
This works well except that it shows the first entry with nothing in it. e.g.
1.
2. FIRST ENTRY
3. SECOND ENTRY
the code above this is the following
$query = "SELECT * FROM sport";
$result = mysql_query($query);
$query_data = mysql_fetch_row($result);
Any help?
Cheers
Olly