|
mysqli_stmt::fetchmysqli_stmt_fetchFetch results from a prepared statement into the bound variables DescriptionObject oriented style
bool mysqli_stmt::fetch
( void
)
Procedural style
bool mysqli_stmt_fetch
( mysqli_stmt
$stmt
)Fetch the result from a prepared statement into the variables bound by mysqli_stmt_bind_result.
Parameters
Return Values
ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: Rockford (USA) Tallahassee (USA) Salinas (USA) Santa Clarita (USA) Springfield (USA) See Also
|