Demonic Posted November 9, 2007 Share Posted November 9, 2007 If someone could explain that would be great to my understanding of the two. Link to comment https://forums.phpfreaks.com/topic/76660-so-whats-different-between-mysql_fetch_array-and-mysal_fetch_assoc/ Share on other sites More sharing options...
Barand Posted November 9, 2007 Share Posted November 9, 2007 try $row = mysql_fetch_array($result); echo '<pre>', print_r($row, 1), '</pre>'; $row = mysql_fetch_assoc($result); echo '<pre>', print_r($row, 1), '</pre>'; and see for yourself. Or you could just rtfm. Link to comment https://forums.phpfreaks.com/topic/76660-so-whats-different-between-mysql_fetch_array-and-mysal_fetch_assoc/#findComment-388170 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.