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.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.