본문 바로가기

스크립트/그누보드 관련

전체 상품 랜덤으로 뽑아오기

영카트4에서 전체상품을 랜덤으로 뽑아오려면?


<table width=100% cellpadding=0 cellspacing=0 border=0>
        <tr><td align=center>
        <?
        $list_mod  = $default[de_rel_list_mod];
        $img_width  = $default[de_rel_img_width];
        $img_height = $default[de_rel_img_height];
        $td_width = (int)(100 / $list_mod);

        $sql = " select *
                  from $g4[yc4_item_table]
                  where it_id <> '$it[it_id]' 
                  order by rand()
                  limit 4 ";  //판매상품만 출력하려면 and it_use='1' 을 추가하면 된다
        $result = sql_query($sql);
        $num = @mysql_num_rows($result);
        if ($num)
            include "$g4[shop_path]/maintype10.inc.php";
        else
            echo "이 상품과 관련된 상품이 없습니다.";
        ?>
</td>
</tr>
</table>



//판매상품만 출력하려면 and it_use='1' 을 추가하면 된다

괜찮다. 영카트