2

我正在尝试用 xpath 抓取一些数据,然后插入到 SQL 中。

Echo 工作正常,但插入 sql 时,它只得到第一行。

例子:

    <?php 
    $res=mysql_query("SELECT table.title, table.link FROM table WHERE table.link LIKE 'http://www.%' AND streams.title = ''");
    while($row=mysql_fetch_array($res))
    {
      $html = new DOMDocument();
      @$html->loadHtmlFile($row["link"]);
      $xpath = new DOMXPath($html);

      foreach ($xpath->query("//table[@style='margin-left: 5px;']//td[@width='150']//a") as $files)
      {
        $html = new DOMDocument();
        @$html->loadHtmlFile($files->getAttribute('href'));
        $xpath = new DOMXPath($html);

        $hl = $xpath->query("//div[@style='width:742px']/a[preceding-sibling::div[@id='help1']]/@href")->item(0)->nodeValue;
        $link=serialize(array('link' => $hl));
        $link=sqlesc($link); 
        echo $link; // all lines gets printed, thats okay?
        mysql_query("UPDATE streams SET streams.hl=$link") or die(mysql_error()); // Only first line gets inserted, why?
      }

    }  
    ?>
4

1 回答 1

0

您正在更新所有行,并且所有行都包含相同的数据,因为上次更新更新了所有行,您是要更新现有行还是只插入新行?

如果你想插入试试这个

INSERT INTO streams (hl) VALUES ($link)

如果表中还有其他非可选列,也插入这些值

于 2012-11-23T13:27:57.047 回答