|
mysqli::multi_querymysqli_multi_queryPerforms a query on the database DescriptionObject oriented style
bool mysqli::multi_query
( string
$query
)Procedural style
bool mysqli_multi_query
( mysqli
$link
, string $query
)Executes one or multiple queries which are concatenated by a semicolon. To retrieve the resultset from the first query you can use mysqli_use_result or mysqli_store_result. All subsequent query results can be processed using mysqli_more_results and mysqli_next_result. Parameters
Return Values
Returns ExamplesExample #1 mysqli::multi_query example Object oriented style
<?php Procedural style
<?php The above examples will output something similar to: my_user@localhost ----------------- Amersfoort Maastricht Dordrecht Leiden Haarlemmermeer See Also
|