Dizisi ile SEÇ ()

0 Cevap php

Ben durumuna göre bazı satır değerlerini seçmek için bir tablo filtre çalışıyorum. İlk oldukça karmaşık SEÇİN işleri ince bana id yıllardan bir grup elde edilmiştir. Ama ben daha fazla düz ileri satır almak için 2 SELECT için bir dizi bu kimliği grubu ($ art_id) kullanmak istiyorum. Birisi ha önerileri umuyoruz. Teşekkürler, Allen.

the first SELECT is not included here -- I do get values with print $art_id; ...but only the last value shows up in my image list SELECT because I need to use an array properly

$QUERY1="SELECT.....etc,..."   ///this works fine

$res = mysql_query($QUERY1);
   $num = mysql_num_rows($res);
   if($num>0){
   while($row = mysql_fetch_array($res)){
       $art_id = $row['art_id'];

print $art_id;
$a1 = array($art_id); ///this $a1 var didn't work in the SELECT below.
   }
}
///here is where I need to have an array var instead of just $art_id
$QUERY2="SELECT * FROM artWork WHERE art_id = '$art_id'";  

    $res = mysql_query($QUERY2);
   $num = mysql_num_rows($res);
   if($num>0){

   while($row = mysql_fetch_array($res)){
       $art_title = $row['art_title'];
       $artist_name = $row['artist_name'];
       $art_id = $row['art_id'];
                 $media = $row['media'];

  echo.....etc,...../// only one image (the last, of course) shows up here

0 Cevap