How to use php to create a data table
Open the php editor and write the comment content of this program .
Then create a new function create_table
Create a variable that needs to be connected to the database and assign it a value.
Then connect to the database through mysqli.
After the connection is completed, we start to write the sql statement to create the data table.
$sql="create table test1( id int(7) unsigned not null auto_increment primary key, username varchar(64) not null, age int(3) not null, register_time timestamp )";
Execute sql statement. $connect->query($sql)
Call this function.
create_table();
For more PHP knowledge, please visit PHP tutorial!
The above is the detailed content of How to create a data table using php. For more information, please follow other related articles on the PHP Chinese website!