Page 527 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 527

<th> <font size=5> code  </font></th>

                    <th>  <font  size=5>  name  </font></th>
                    <th>   <font  size=5>  price  </font></th>
                    </tr>

            <?php
            while  ($row  =  mysql_fetch_array($query))  //recode값  배열로  출력
            {


                    echo"

                    <tr>
                            <th>$row[code]</th>
                            <th>$row[name]</th>

                            <th>$row[price]</th>
                    </tr>
                    ";
            }

            ?>
            </table>



            [DB와의  연결]
            <?php
            $connect=mysql_connect("localhost","root","1234");//mysql연결
            $mysql=mysql_select_db("Userdb",$connect);//db선택

            ?>


            [결제  창]
            휴대폰  창에서  결제  버튼을  누르면  볼  수  있는  창을  구성하는  프로그램이다.  결제를  Yes를  누

            르면  모든  데이터베이스가  지워지고  결제가  완료된다.
            <!DOCTYPE  html>
            <html>
                    <head>

                            <title>showbag</title>
                            <meta  name="viewport"  content  =  "user-scalable=no,  initial-scale=1,
            width=device-width"/>

                            <script  src="../js/jquery.touchSwipe.js"></script>
                            <script  src="../js/idangerous.swiper.js"></script>




                                                         -  520  -
   522   523   524   525   526   527   528   529   530   531   532