これがあなたがそれをする方法です:
$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...
}
しかし、私は言わなければならないでしょう、これはこれを処理する正しい方法ではないようです。最初のループ内で処理を行ってみませんか?