gpt4 book ai didi

PHP:获取 HTML 标签内的内容并插入到表中

转载 作者:行者123 更新时间:2023-11-30 23:00:56 28 4
gpt4 key购买 nike

我有以下列表,在 标签 /span >

内有评论

如何将每条评论保存到我的表格中?

<ul id="list">
<li>
<span>Comment 1</span>
</li>
<li>
<span>Comment 2</span>
</li>
<li>
<span>Comment 3</span>
</li>
</ul>

我想像这样将它保存到我的表中:

+----+--------+------------+
| id | time | comment |
+----+--------+------------+
| 1 | 12:05 | Comment 1 |
+----+--------+------------+
| 2 | 14:20 | Comment 2 |
+----+--------+------------+
| 3 | 17:41 | Comment 3 |
+----+--------+------------+

我当前的 PHP 代码:

<?php
$connect = mysqli_connect("localhost","daniel","password","comments_db");

$time = time();

// $comments = ??????;

foreach($comments as $comment) {
mysqli_query($connect,"INSERT INTO comments VALUES ('".$time."', '".$comment."')");
}
?>

我怎样才能做到这一点?提前致谢。

最佳答案

您每次只需获得一条评论,用户会将评论提交到您的服务器并由您保存。

关于PHP:获取 HTML 标签内的内容并插入到表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24051413/

28 4 0