|
mysqli_stmt::bind_parammysqli_stmt_bind_paramBinds variables to a prepared statement as parameters DescriptionObject oriented style
bool mysqli_stmt::bind_param
( string
$types
, mixed &$var1
[, mixed &$...
] )Procedural style
bool mysqli_stmt_bind_param
( mysqli_stmt
$stmt
, string $types
, mixed &$var1
[, mixed &$...
] )Bind variables for the parameter markers in the SQL statement that was passed to mysqli_prepare.
Parameters
Return Values
Returns ExamplesExample #1 Object oriented style
<?php Example #2 Procedural style
<?php The above examples will output: 1 Row inserted. 1 Row deleted. See Also
|