Current page uses the:
$row_rsMyData = mysql_fetch_assoc (rsMyData);
As part of the mysql query created by Dreamweaver.
Later on in the page I'm using:
while ($row_rsMyData = mysql_fetch_assoc($rsMyData))
To fetch filenames from the database to add to an array.
The problem is the first fetch gets the first records in the row and doesn't leave the data there for the second fetch meaning the result is an array with one record missing.
What could I use instead of the second fetch or is there a way to reset before the second one takes place.
I have tried
mysql_data_seek()
But it doesn't seem to work for me.