最近几天我一直在研究这个脚本,似乎找不到将数据插入 MySQL 的方法。我是 PHP/MYSQL 的初学者,之前只写过几个简单的脚本。我能够回显抓取的数据并且没有收到错误消息,但是当我检查 phpmyadmin 时,查询不起作用(结果没有输入到数据库中)。
这是我一直在处理的代码
require ("mysqli_connect.php");
include('../simple_html_dom.php');
ini_set('user_agent',
'Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3');
// get DOM from URL or file
$html = file_get_html('http://www.asos.com/Women/Jeans/Cat/pgecategory.aspx?cid=3630&via=lhn');
// find all images
foreach($html->find('#items') as $a)
echo $a->innertext .'<br>';
foreach($html->find('span.price') as $p)
echo $p->innertext .',';
$q = "INSERT INTO jeans (`image`, `price`) VALUES ('$a', '$p')";
$r = @mysqli_query ($dbc, $q) or die ("Update query failed : " . mysql_error());; //Run the Query.