Search Results

  1. The mysqli_result class Converting an old project from using the mysql extension to the mysqli extension, I found the most annoying change to be the lack of a corresponding mysql_result function in mysqli. While mysql_result is a generally terrible function, it was useful for fetching a single result field *value* from a result set (for example, if looking up a user's ID). The behavior of ...

    • Mysqli

      mysqli_result::data_seek — Adjusts the result pointer to an...

  2. I'm porting some old PHP code from mysql to MySQLi, and I've ran into a minor snag. Is there no equivalent to the old mysql_result() function? I know mysql_result() is slower than the other func...

  3. PHP Manual Introduction Represents the result set obtained from a query against the database.

  4. (PHP 5, PHP 7) Represents the result set obtained from a query against the database.

  5. PHP mysqli_result Class The PHP mysqli_result class represents the result set obtained after running a query.

  6. Definition and Usage The use_result () / mysqli_use_result () function initiates the retrieval of a result-set from the last query executed.

  7. People also ask

  8. Stores whether the result is buffered or unbuffered as an int (MYSQLI_STORE_RESULT or MYSQLI_USE_RESULT, respectively).