MySQL creates a database using PHP and mysqlphp creates a database

Source: Internet
Author: User

MySQL creates a database using PHP and mysqlphp creates a database
Use mysqladmin to create a database

For normal users, you may need specific permissions to create or delete MySQL databases.

Therefore, we use the root user to log on. the root user has the highest permissions and can use the mysql mysqladmin command to create a database.

Instance

The following command demonstrates the process of creating a database. The data name is TUTORIALS:

[root@host]# mysqladmin -u root -p create TUTORIALSEnter password:******

After the preceding command is successfully executed, the MySQL database TUTORIALS is created.

  Use a PHP script to create a database

PHP uses the mysql_query function to create or delete a MySQL database.

This function has two parameters. TRUE is returned when execution is successful. Otherwise, FALSE is returned.

Syntax
bool mysql_query( sql, connection );

 

Parameters Description
SQL Required. Specifies the SQL query to be sent. Note: The query string should not end with a semicolon.
Connection Optional. Specifies the SQL connection identifier. If not specified, the last opened connection is used.

 

Instance

The following example demonstrates how to create a database using PHP:

 

Address: http://www.manongjc.com/mysql/mysql_create_database.html

Related reading:

  • MySQL deletes a database
  • MySQL select database
  • MySQL Data Type
  • Create a data table in MySQL
  • MySQL deletes a data table
  • Insert MySQL Data
  • MySQL query data

Related Article

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.