Mysql_fetch_assoc पर बार-बार कॉल का उपयोग करें। यह सीधे PHP मैनुअल में प्रलेखित है।
http://php.net/manual/function.mysql-fetch-assoc .php
// While a row of data exists, put that row in $row as an associative array
// Note: If you're expecting just one row, no need to use a loop
// Note: If you put extract($row); inside the following loop, you'll
// then create $userid, $fullname, and $userstatus
while ($row = mysql_fetch_assoc($result)) {
echo $row["userid"];
echo $row["fullname"];
echo $row["userstatus"];
}
यदि आपको आवश्यकता हो, तो आप इसका उपयोग अपनी स्क्रिप्ट के अन्य भागों में उपभोग के लिए एक बहुआयामी सरणी बनाने के लिए कर सकते हैं।