At the top of the page I have something like the following....
#-----------------------------
$DBresults=mysql_fetch_array($result)
$LastModified= $DBresults['lastModified'];
#----------------------------
But then further down the page I want to use a loop to return multiple assignments of variables, but if I try to retrieve them using...
#-----------------------------
$comments=mysql_fetch_array($result)
$comments= $DBresults['comments'];
#----------------------------
I do not get the results I require. If I comment out the first instance, there isn't a problem ???
Is there another way of doing this
:
Thanks


