0

我在这段代码中有问题,我从两个表中获取信息,并且“where news_id=$dz”不起作用。这是包含此代码的页面。

这是我的代码:

<?php
mysql_query("SET NAMES UTF8");
$result = mysql_query("SELECT dz,title FROM dzeglebi where raioni='ყვარლის მუნიციპალიტეტი' && mxare='kaxeti' ORDER BY title ASC", $db);
$myrow = mysql_fetch_array ($result);

printf(
       "<h2><li>
       <strong><a href='../../dzeglebi.php?id=%s'>%s</a>
       </strong></li></h2>",$myrow["dz"],$myrow["title"]);


function FetchImage($id)
{
    $images=array();
    $x=0;
    $d=mysql_query("select * from `images` where news_id=$dz");
    while($data=mysql_fetch_array($d))
    {
        $images["big"][$x]=$data["image"];
        $images["small"][$x]=$data["small"];
        $x++;
    }   
return $images;
}
function CountImages($id)
{
$d=mysql_query("select * from `images` where news_id=$dz");
return mysql_num_rows($d);  
}
$imgs=FetchImage($id);

 for($i=0;$i<CountImages($id);$i++)
{
echo'

 <img src="../'.$imgs["big"][$i].'" >';
}



?>
4

2 回答 2

1

function CountImages($id) { $d=mysql_query("select * from images where news_id=$dz");- 在这里你应该使用 $id

下一个问题: - 不要使用for($i=0;$i<CountImages($id);$i++)将其更改为

$len = CountImages($id);
for($i=0;$i<$len;$i++)

因为您不需要为每次 FOR 迭代执行 SQL 查询,甚至删除它 - 因为您有 $images 数组,所以迭代它

下一个问题:

$d=mysql_query("select * from `images` where news_id=$id");
return mysql_num_rows($d);  

不要使用mysql_num_rows,使用 SQL count(*)- 因为它只会将 1 个数字从 mysql 发送到 php,而不是整个结果集

于 2013-10-10T20:24:27.540 回答
0

在第一个查询中,更改&& mxare='kaxeti'AND mxare='kaxeti'。此外,在函数FetchImageCountImages中,news_id=$dznews_id=$id

于 2013-10-10T20:22:07.323 回答