Đây là cách bạn có thể làm điều đó:
$result = mysql_query(/* Your query */);
while($row = mysql_fetch_assoc($result)){
// do whatever here...
}
// set the pointer back to the beginning
mysql_data_seek($result, 0);
while($row = mysql_fetch_assoc($result)){
// do whatever here...
}
Tuy nhiên, tôi phải nói rằng, đây có vẻ không phải là cách phù hợp để xử lý việc này. Tại sao không xử lý trong vòng lặp đầu tiên?