0

私はこのスライダーギャラリーを使用しています。画像の親指を表示しているときに問題が発生しました。親指の後にwhileループを終了するときに、ULタグとliタグでのみwhileループを使用しました。メインの画像ボックスにすべての画像が表示されます。PHPコードでこのギャラリーを使用する方法を教えてもらえますか

    <div class="image-gallery">
     <?php  if($pic_count > 0){ ?>
      <div id="wowslider-container1">
        <div class="ws_images">
          <?php while(!$rs_img_gallery->EOF) { ?>
          <ul>
            <li><img src="<?php echo MYSURL;?>img.gallery/<?php echo $rs_img_gallery->fields['image'] ?>" alt="" id="wows1_0"/></li>
         </ul>
            <?php $rs_img_gallery->MoveNext();
                } // end while(!$rs_dc_gallery->EOF) ?> 
              </div>
                <div class="ws_thumbs">
                <div>
                    <a href="#"><img src="<?php echo MYSURL;?>img.gallery/<?php echo $rs_img_gallery->fields['image'] ?>" alt="" width="120" height="90"/></a>      
                </div>
                </div>
              </div>
           <?php  }else{
            echo "<div class='notification information png_bg' style='width:90%;'>
     <div>
            ".$infomsg['msg164']."
             </div>
             </div>";
            }?>
           </div>
4

1 に答える 1

0

while ループから <UL> を取り出す必要があります

 <div class="ws_images">
    <ul>
    <?php   while(!$rs_img_gallery->EOF) { ?>
        <li>
            <img src="<?php echo MYSURL;?>img.gallery/<?php echo $rs_img_gallery->fields['image'] ?>" alt="" id="wows1_0"/>
        </li>
    <?php 
    $rs_img_gallery->MoveNext();
    } // end while(!$rs_dc_gallery->EOF)
    ?>
    </ul> 
 </div>
于 2013-03-08T08:54:05.787 に答える