我插入了刮到我的數據庫的鏈接,但是當我檢查數據庫時,自動增量記錄的數量是正確的,但cado字段保持空白。當我插入默認值「測試」@$results_urls[$separate_result]
記錄被填充。什麼錯誤我做了PHP從數組插入到數據庫
$separate_results = explode("<td class=\"image\">", $results_page); // Expploding the results into separate parts into an array
// For each separate result, scrape the URL
foreach ($separate_results as $separate_result) {
if ($separate_result != "") {
$results_urls[] = "http://www.imdb.com" . scrape_between($separate_result, "href=\"", "\" title="); // Scraping the page ID number and appending to the IMDb URL - Adding this URL to our URL array
$add = "INSERT INTO pourqui(
cado
) VALUES (
'$results_urls[$separate_result]'
)";
$result_add = mysql_query($add);
if (!$result_add) {
die("Database query failed: " . mysql_error());
}
}
請閱讀第一個問題,並在列相關回答正確,然後再繼續。 – Marty