<td contenteditable="true" ><input type="text" oninput="filterTable(1)" placeholder="aoiStep" ></td> <td contenteditable="true" ><input type="text" oninput="filterTable(2)" placeholder="defectType" ></td> <td contenteditable="true" ><input type="text" oninput="filterTable(3)" placeholder="layerCode" ></td> <td contenteditable="true" ><input type="text" oninput="filterTable(4)" placeholder="type"></td> <td contenteditable="true" ><input type="text" oninput="filterTable(5)" placeholder="dpet" ></td> <td contenteditable="true"><input type="text" oninput="filterTable(6)" placeholder="subcode" ></td> <td contenteditable="true" ><input type="text" placeholder="codeDescription" ></td> <td contenteditable="true" >image1</td> <td contenteditable="true" >image2</td> <td contenteditable="true">image3</td> <td contenteditable="true" >image4</td> <td contenteditable="true" >image5</td> <td contenteditable="true" ><input type="text" placeholder="determination_rule"></td>我创建了PHPstudy数据库,并且能够正常链接上数据库,我现在需要将以上表头下在网页编辑的内容插入数据库保存,并且打开后网页后能偶读取显示出来
时间: 2023-08-14 11:07:26 浏览: 172
当div设置contentEditable=true时,重置其内容后无法光标定位
5星 · 资源好评率100%
要将网页编辑的内容插入数据库并在打开网页时读取和显示出来,你需要进行以下步骤:
1. 创建一个数据库表来存储数据。可以使用类似下面的 SQL 语句创建表:
```sql
CREATE TABLE your_table_name (
id INT PRIMARY KEY AUTO_INCREMENT,
aoiStep VARCHAR(255),
defectType VARCHAR(255),
layerCode VARCHAR(255),
type VARCHAR(255),
dpet VARCHAR(255),
subcode VARCHAR(255),
codeDescription VARCHAR(255),
image1 VARCHAR(255),
image2 VARCHAR(255),
image3 VARCHAR(255),
image4 VARCHAR(255),
image5 VARCHAR(255),
determination_rule VARCHAR(255)
);
```
2. 在你的网页中,使用服务器端脚本(如 PHP)来处理表单提交并将数据插入到数据库。你可以修改 `upload.php` 文件,将表单数据插入数据库。示例代码如下:
```php
<?php
// 连接数据库
$conn = mysqli_connect("localhost", "your_username", "your_password", "your_database");
// 检查连接是否成功
if (!$conn) {
die("数据库连接失败: " . mysqli_connect_error());
}
// 处理表单提交
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// 获取表单数据
$aoiStep = $_POST["aoiStep"];
$defectType = $_POST["defectType"];
$layerCode = $_POST["layerCode"];
// 其他字段...
// 执行插入操作
$sql = "INSERT INTO your_table_name (aoiStep, defectType, layerCode, ...) VALUES ('$aoiStep', '$defectType', '$layerCode', ...)";
if (mysqli_query($conn, $sql)) {
echo "数据插入成功";
} else {
echo "数据插入失败: " . mysqli_error($conn);
}
}
// 关闭数据库连接
mysqli_close($conn);
?>
```
3. 在网页中的 `<form>` 标签中添加 `action` 属性和 `method` 属性,以将表单数据发送到 `upload.php` 进行处理:
```html
<form action="upload.php" method="POST">
<!-- 表单内容 -->
</form>
```
4. 在打开网页时,使用服务器端脚本从数据库中读取数据,并将其显示在网页上。你可以在网页的适当位置使用 PHP 代码来实现。示例代码如下:
```php
<?php
// 连接数据库
$conn = mysqli_connect("localhost", "your_username", "your_password", "your_database");
// 检查连接是否成功
if (!$conn) {
die("数据库连接失败: " . mysqli_connect_error());
}
// 从数据库中读取数据
$sql = "SELECT * FROM your_table_name";
$result = mysqli_query($conn, $sql);
// 显示数据
if (mysqli_num_rows($result) > 0) {
while ($row = mysqli_fetch_assoc($result)) {
// 根据字段名访问数据,例如 $row["aoiStep"]
// 将数据显示在适当的位置
}
} else {
echo "没有数据";
}
// 关闭数据库连接
mysqli_close($conn);
?>
```
请记得根据你的实际数据库信息和表结构进行相应的修改。
希望这些信息对你有帮助!如有任何疑问,请随时提问。
阅读全文