2

I want to run the multiple queries in single statement how to do this.

Abhi
  • 5,361
  • 16
  • 73
  • 128

2 Answers2

4

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

Oliver M Grech
  • 2,854
  • 1
  • 19
  • 31
4

You can run multiple queries using mysqli::multi_query()

as the mysql_ function family does not provide feature to execute multiple queries in once.

Shakti Singh
  • 81,083
  • 20
  • 131
  • 150