mysql_fetch_array(result)

Description: Fetches one row of data from the resultset associated with the identifier result, returning a numeric array, an associative array, or both.

Each call to mysql_fetch_array() fetches the next row of data from the resultset. When there are no more rows, it returns FALSE.

while ($row = mysql_fetch_array ($result)) {
    echo "$row[lastname], $row[firstname], $row[2]<BR>
";
}

See also: mysql_fetch_row(), mysql_fetch_object()

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
18.188.96.232