Php从Array插入数据库

时间:2013-06-20 07:09:34

标签: php

我正在将刮取的链接插入我的数据库但是当我在数据库中检查时,自动增量记录的数量是正确的,但是cado字段保持空白。当我插入默认值“test”@ $results_urls[$separate_result]时,记录将被填充。我做了什么错误

$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()); 
        }
    }

1 个答案:

答案 0 :(得分:1)

使用{}从数组中插入数据

$add = "INSERT INTO pourqui(cado) VALUES ('{$results_urls[$separate_result]}')";
                                           ^                               ^