PHP executes the SQL file and imports the SQL file to the database. _ PHP Tutorial

Source: Internet
Author: User
PHP executes the SQL file and imports the SQL file to the database ,. PHP executes the SQL file and imports the SQL file to the database to read the file content $ _ sqlfile_get_contents (test. SQL); $ _ arrexplode (;, $ _ SQL); $ _ mysqlinewmysqli (DB_HOST, DB_USER, d php executes the SQL file and imports the SQL file to the database,
// Read the file content $ _ SQL = file_get_contents ('test. SQL '); $ _ arr = explode ('; ', $ _ SQL); $ _ mysqli = new mysqli (DB_HOST, DB_USER, DB_PASS); if (mysqli_connect_errno ()) {exit ('database connection error ');} // execute the SQL statement foreach ($ _ arr as $ _ value) {$ _ mysqli-> query ($ _ value. ';') ;}$ _ mysqli-> close (); $ _ mysqli = null;

Text. SQL above is the SQL file you need to execute, DB_HOST host name, DB_USER username, DB_PASS password!

This is only the most basic SQL file for automatic execution. you can also customize the name of the database to delete the code in the SQL file.

Create database if not exists database name default character set utf8 COLLATE utf8_general_ci;

USE database name

Add the code before executing all SQL statements in text. php.

$ _ Mysqli-> query ("create database if not exists database name default character set utf8 COLLATE utf8_general_ci;"); $ _ mysqli-> query ("use database name ");

The above is all the content of this article and I hope it will help you.

Contents, // read the file content $ _ SQL = file_get_contents ('test. SQL '); $ _ arr = explode ('; ', $ _ SQL); $ _ mysqli = new mysqli (DB_HOST, DB_USER, D...

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.