Ver original$result = mysql_query(/* Tu consulta */);while($row = mysql_fetch_assoc($result)){ // Primera ejecución} // Devuelve el apuntador al iniciomysql_data_seek($result, 0);while($row = mysql_fetch_assoc($result)){ // Segunda ejecución} // Necesitas hacerlo nuevamente?... no problem, repite