आप इसे इस तरह से कर सकते हैं:
$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...
}
हालांकि, मुझे कहना होगा, इसे संभालने का यह सही तरीका नहीं लगता है। पहले लूप में प्रोसेसिंग क्यों नहीं करते?