mysql_fetch_row — Get a row from result set
MYSQL_ROW mysql_fetch_row(MYSQL_RES * result);
Fetches one row of data from the result set and returns it as an array of char pointers (MYSQL_ROW
), where each column is stored in an offset starting from 0 (zero). Each subsequent call to this function will return the next row within the result set, or NULL
if there are no more rows.
Returns an array of strings that corresponds to the fetched row or NULL if there are no more rows in result set.