mysql_fetch_assoc() का उपयोग न केवल एक पंक्ति प्राप्त करता है, यह परिणाम के आंतरिक सूचक को अगली पंक्ति में भी ले जाता है। परिणाम संसाधन को पहली पंक्ति में रीसेट करने के लिए, आपको mysql_data_seek() का उपयोग करने की आवश्यकता है।
$query = "SELECT * FROM mytable";
$result = mysql_query($query);
$firstrow = mysql_fetch_assoc($result);
// reset the result resource
mysql_data_seek($result, 0);
while($row = mysql_fetch_assoc($result)) {
//display all of them
}