Build Your Own DatabaseDriven Website Using PHP amp;amp; MySQL [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Build Your Own DatabaseDriven Website Using PHP amp;amp; MySQL [Electronic resources] - نسخه متنی

Kevin Yank

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید








mysql_fetch_array

mysql_fetch_array(result_id[, array_type])

This function fetches the next row of a MySQL result set, and then advances
the internal row pointer of the result set to the next row. It returns the
row as an associative array, a numeric array, or both, depending on the value
of array_type.

When array_type is not specified, or set to MYSQL_BOTH,
each field in the row will be given a numerical index ($row[0])
as well as a string index ($row['col_name']) in the returned
array. MYSQL_NUM causes only numerical indices to be
assigned, while MYSQL_ASSOC assigns only string indices.

This function returns false if there are no rows
left in the specified result set.

/ 190