Thứ Ba, 11 tháng 11, 2008

Code

<br><br>
<?php

    $hinh="co";
    $id=$_GET['id'];
    $thuoc_menu=$tv_2['thuoc_menu'];
   
   
    if(!isset($_GET['trang'])){$vtbd=0;}else{$vtbd=($_GET['trang']-1)*$so_du_lieu;}
   
    $tv="select id,ten,gia,hinh_anh,thuoc_menu from san_pham where thuoc_menu='$thuoc_menu' and id<$id order by id desc limit 0,6 ";
    $tv_1=mysql_query($tv);
    echo "<table>";
    while($tv_2=mysql_fetch_array($tv_1))
    {
        echo "<tr>";
            for($i=1;$i<=3;$i++)
            {
                echo "<td align='center' width='215px' valign='top' >";
                    if($tv_2!=false)
                    {
                        $link_anh="hinh_anh/san_pham/".$tv_2['hinh_anh'];
                        $link_chi_tiet="?thamso=chi_tiet_san_pham&id=".$tv_2['id'];
                        $gia=$tv_2['gia'];
                        $gia=number_format($gia,0,",",".");
                        if($hinh=="co")
                        {
                            echo "<a href='$link_chi_tiet' >";
                                echo "<img src='$link_anh' width='150px' >";
                            echo "</a>";
                       
                            echo "<br>";
                            echo "<br>";
                        }
                        echo "<a href='$link_chi_tiet' >";
                            echo $tv_2['ten'];
                        echo "</a>";
                        echo "<div style='margin-top:5px' >";                       
                        echo $gia;
                        echo "</div>";
                        echo "<br>";
                    }
                    else
                    {
                        echo "&nbsp;";
                    }
                echo "</td>";
                if($i!=3)
                {
                    $tv_2=mysql_fetch_array($tv_1);
                }
            }
        echo "</tr>";
    }
    echo "</table>";
?>