Reputation: 5561
I want to run the multiple queries in single statement how to do this.
Upvotes: 2
Views: 5203
Reputation: 86346
You can run multiple queries using mysqli::multi_query()
as the mysql_
function family does not provide feature to execute multiple queries in once.
Upvotes: 4
Reputation: 3171
you will have to use mysqli instead of mysql.
Please refer to the following
http://php.net/manual/en/book.mysqli.php
http://php.net/manual/en/mysqli.multi-query.php
Upvotes: 4