In this way, the database is created. Next, we create a form called form in the regedit library. The form contains information as follows:
Table name: form
##Field name
id
username
password
Field type
int
varchar
varchar
Field length
5
100
100
Field description
User id
Username
User password
Based on the information in the table, we create the table and use the table creation statement:
<?php
// 创建连接
$conn = new mysqli("localhost", "root", "root","regedit");
// 检测连接
if ($conn->connect_error)
{
die("连接失败: " . $conn->connect_error);
}
// 使用 sql 创建数据表
$sql = "CREATE TABLE form (
id INT(10) UNSIGNED AUTO_INCREMENT PRIMARY KEY,
username VARCHAR(30) NOT NULL,
password VARCHAR(30) NOT NULL,)ENGINE=InnoDB DEFAULT CHARSET=utf8 ";
if ($conn->query($sql) === TRUE)
{
echo "Table MyGuests created successfully";
} else {
echo "创建数据表错误: " . $conn->error;
}
$conn->close();
?>
In this way, the database is built, the data table is also built, and the rest can be added.
Of course, we can also use another method to add, which will be faster.
Take phpStudy as an example:
Click the button, select phpMyStudy, enter the database login page, and the account and password are both root.
Then enter this page and click "Database", as shown in the picture:
Then when you get to this page, you can fill in the name of the database where the arrow points. , click Create, and it is created.
Next, you can create the data table, name the table, and number of fields. After creating it, there will be an execution in the lower right corner. Click to create the form.
The courseware is not available for download at the moment. The staff is currently organizing it. Please pay more attention to this course in the future~
Students who have watched this course are also learning