我从 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
我正在将信息加载到变量中,但不明白如何将其插入到名为 data 的 mysql 表中?
这听起来很容易,但我正在为它的数组而苦苦挣扎。