|
mysqli_stmt::fetchmysqli_stmt_fetchFetch results from a prepared statement into the bound variables DescriptionObject-oriented style
public boolnull mysqli_stmt::fetch()
Procedural style boolnull mysqli_stmt_fetch(mysqli_stmt
$statement )Fetch the result from a prepared statement into the variables bound by mysqli_stmt_bind_result.
Parameters
Return Values
Errors/Exceptions
If mysqli error reporting is enabled ( ExamplesExample #1 Object-oriented style
Example #2 Procedural style
The above examples will output: Rockford (USA) Tallahassee (USA) Salinas (USA) Santa Clarita (USA) Springfield (USA) See Also
|