PHP Manual
mysqli_stmt_bind_result
(PHP 5)
mysqli_stmt_bind_result(no version information, might be only in CVS)
stmt->bind_result() -- Binds variables to a prepared statement for result storageDescription
Procedural style:
bool mysqli_stmt_bind_result ( mysqli_stmt stmt, mixed &var1 [, mixed &...] )Object oriented style (method):
class mysqli_stmt {bool bind_result ( mixed &var1 [, mixed &...] )
}
Binds columns in the result set to variables.
When mysqli_stmt_fetch() is called to fetch data, the
MySQL client/server protocol places the data for the bound columns into
the specified variables var1, ....
Note: Note that all columns must be bound after mysqli_stmt_execute() and prior to calling mysqli_stmt_fetch(). Depending on column types bound variables can silently change to the corresponding PHP type.
A column can be bound or rebound at any time, even after a result set has been partially retrieved. The new binding takes effect the next time mysqli_stmt_fetch() is called.
Parameters
stmtProcedural style only: A statement identifier returned by mysqli_stmt_init().
var1The variable to be bound.
Examples
Example 2. Procedural style
|
The above example will output:
AFG Afghanistan ALB Albania DZA Algeria ASM American Samoa AND Andorra |
Support PHPRO.ORG
Search
PHPRO.ORG Poll
Warning: Participation in PHPRO.ORG polls may incorrectly lead you to believe your opinions matter.

RSS Feed




