Jump to content

mysql_fetch_array() & mysql_fetch_assoc()


halm1985

Recommended Posts

mysql_fetch_array returns both an associative array (eg $row['id'], $row['name'] etc) and a numerical array (eg: $row[0] - first row, $row[1] - secound row).

 

mysql_fetch_array does have an optional second parameter for what type of array you want that function to return. The options are MYSQL_ASSOC, MYSQL_NUM, or MYSQL_BOTH (default)

 

MYSQL_ASSOC - return an associative array (same as mysql_fetch_assoc())

MYSQL_NUM - return a numerical array (same as mysql_fetch_row())

MYSQL_BOTH - return both an associative array and numerical array (default behaviour).

 

mysql_fetch_assoc returns just an associative array.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.