gpt4 book ai didi

php - 将数组输入表 PHP

转载 作者:行者123 更新时间:2023-11-29 05:36:28 25 4
gpt4 key购买 nike

我从 rss 提要中提取数据,我想将标题和描述添加到 mysql 数据库中的同一行(不同字段)

$result = $xml->xpath('//title');  //finding the title tags in the xml document and loading into variable
$result1 = $xml->xpath('//description'); //finding the title tags in the xml document and loading into variable

我正在将信息加载到变量中,但不明白如何将其插入到名为数据的 mysql 表中?

这听起来很简单,但我很难理解它是一个数组。

最佳答案

沿着这些方向尝试一些东西:(已更新)

<?php
$con = mysql_connect("localhost","yourdbusername","yourdbpassword");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}

mysql_select_db("yourdbname", $con);

$query = sprintf("INSERT INTO `data` (`title`, `description`) VALUES ('%s','%s');",
mysql_real_escape_string($result),
mysql_real_escape_string($result1));

mysql_query($query);

mysql_close($con);
?>

关于php - 将数组输入表 PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10150284/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com