Computer >> Computer tutorials >  >> Programming >> MySQL

Which PHP function is used to create a MySQL table?


PHP uses a mysql_query function to create a MySQL table. This function takes two parameters and returns TRUE on success or FALSE on failure. Its syntax is as follows −

Syntax

bool mysql_query( sql, connection );

Followings are the parameters used in this function −

Sr.No Parameter & Description
1

Sql

Required - SQL query to create a MySQL table

2

connection

Optional - if not specified, then the last opened connection by mysql_connect will be used.