mysql_fetch_row(result)

Description: Fetches one row of data from the resultset associated with the identifier result, returning a numerical array.

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

Example:

while ($row = mysql_fetch_row ($result)) {
    echo "$row[0], $row[1], $row[2]<BR>
";
}

See also: mysql_fetch_array(), 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.117.101.178