I'm doing some nested looping, (this is simplified):-
while ($row=mysql_fetch_object($result)) {
while ($row2=mysql_fetch_object($result2){
if ($row->column == $row2->column) {
do something...
}
}
}
However it only seems to do the iteration once. Is there something funny going on?
Antun