0

このコードに問題があります。2 つのテーブルから情報を取得していますが、「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(*)してください。これは、結果セット全体ではなく、mysql から 1 つの数値のみを php に送信するためです。

于 2013-10-10T20:24:27.540 に答える