no rs.movenext, you will need to do a while statement to move through the object (in this case $result...
the way I usually use is...
while($row = mysql_fetch_array($result)) {
do whatever
fields are loaded into an array called $row
if the user name is the second column then
$row[1] is the user name
}
you don't specifically have to use $row. The principle here is that each row of the object that is loaded into $result is loaded into $row as an array, and the while statement addresses it. When the script contained within the while statement is complete, it will move to the next row until there is no more.
One good thing about this is no dreaded "You have reached either BOF or EOF" error statement.
HTH
Jim Hawley