0

我正在尝试创建 sitemap.xml 文件并从我的数据库中获取所有品牌。我有以下代码:

<?php
header("Content-type: text/xml");
echo'<?xml version=\'1.0\' encoding=\'UTF-8\'?>';
echo'<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">';

include 'includes/modules/connections/db.php'; //database connection
$brands = mysql_query("SELECT * FROM brands WHERE brand_status = 1"); //Select all brands
$row_brands = mysql_fetch_assoc($brands);

do { ?>
<url>
<?php
//Check when brand pages was last time updated 
$brand_update = mysql_query("SELECT * FROM user_history WHERE brand_id = ".$row_brands['brand_id']." ORDER BY uh_date DESC");
$row_brand_update = mysql_fetch_assoc($brand_update)
?>
    <loc>http://www.example.com/brand/<? echo $row_brands['brand_url']; ?>/</loc>
    <lastmod><?php echo $row_brand_update['uh_date']; ?></lastmod>
    <changefreq>daily</changefreq>
    <priority>0.7</priority>
</url>
<?php } while ($row_brands = mysql_fetch_assoc($brands)); ?> 
</urlset>

但是我得到以下错误。我尝试了很多更改,但总是会出现不同的错误。有人在上面的代码中看到导致以下错误的问题吗?

<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd">
<br/>
<b>Warning</b>
: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in
<b>
/hermes/bosoraweb060/b2763/ipg.example/sitemap-brands.php
</b>
on line
<b>8</b>
<br/>
<url>
<br/>
<b>Warning</b>
: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in
<b>
/hermes/bosoraweb060/b2763/ipg.example/sitemap-brands.php
</b>
on line
<b>15</b>
<br/>
<loc>http://www.example.com/brand//</loc>
<lastmod/>
<changefreq>daily</changefreq>
<priority>0.7</priority>
</url>
<br/>
<b>Warning</b>
: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in
<b>
/hermes/bosoraweb060/b2763/ipg.example/sitemap-brands.php
</b>
on line
<b>22</b>
<br/>
</urlset>

非常感谢得到帮助!

4

1 回答 1

-2

切换到 mysql_ 之外的东西!继续使用 mysql 和 intertoobz wil pwn ur w3bs1te, srsly。话虽这么说,我会在你问的上下文中回答你的问题。

当您从其中解开 HTML 时,您的第一条错误消息是这样说的:

警告:mysql_fetch_assoc():提供的参数不是第 8 行 /hermes/bosoraweb060/b2763/ipg.example/sitemap-brands.php 中的有效 MySQL 结果资源

您可以查看代码的第 8 行,发现只有一个参数传递给该函数。该参数是由您的代码中的这一行产生的:

 $brands = mysql_query("SELECT * FROM brands WHERE brand_status = 1"); 

所以,$brands你试图从 mysql_query 取回的东西不好(它不是一个有效的 MySQL 结果资源)。

有什么问题?您的 SELECT 语句失败。

这可能是因为您的数据库不包含brands表,或者因为它确实包含brands表但该表没有brand_status列。

这也可能是因为您需要在运行查询之前调用 mysql_select_db("database")。看看这个: http ://www.php.net/manual/en/function.mysql-select-db.php

您可能应该在调用 mysql_query() 之后立即调整代码以包含以下行。这将导致您的程序向您显示来自 MySQL 本身的错误消息,而不仅仅是 PHP,因此您可以找出 SELECT 中出了什么问题。

if (0 != mysql_errno()) { 
  echo mysql_errno() . ": " . mysql_error(). "<br/>\n";
  exit ("MySQLfailure.<br/>\n");
}

您可以在每次查询之后将其放在后面,并将其保留在您的生产代码中。

于 2012-09-01T17:37:33.960 回答