ต่อจาก WEB.25 ตอนที่ 2 นะครับ ใน workshop นี้จะแสดงรายการสั่งซื้อและมีฟอร์มให้เพิ่มที่อยู่ในการจัดส่งสินค้า
และเพิ่มลูกเล่นโดยการใส่ปุ่ม print กรณีต้องการ print ไว้เป็นหลักฐาน หรือจะเซฟเก็บไว้เป็นไฟล์ pdf ก็ทำได้เหมือนกัน
confirm.php
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
<?php error_reporting( error_reporting() & ~E_NOTICE ); session_start(); ?> <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Shopping Cart devbanban</title> <!-- Latest compiled and minified CSS --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> </head> <body> <?php include("menu.php");?> <div class="container"> <div class="row"> <div class="col-md-2"></div> <div class="col-md-8"> <p><a href="cart.php">กลับหน้าตะกร้าสินค้า</a> <button class="btn btn-primary" onClick="window.print()"> print </button></p> <table width="700" border="1" align="center" class="table"> <tr> <td width="1558" colspan="5" align="center"> <strong>สั่งซื้อสินค้า</strong></td> </tr> <tr class="success"> <td align="center">ลำดับ</td> <td align="center">สินค้า</td> <td align="center">ราคา</td> <td align="center">จำนวน</td> <td align="center">รวม/รายการ</td> </tr> <?php require_once('Connections/condb.php'); $total=0; foreach($_SESSION['shopping_cart'] as $p_id=>$p_qty) { $sql = "select * from tbl_product where p_id=$p_id"; $query = mysql_db_query($database_condb, $sql); $row = mysql_fetch_array($query); $sum = $row['p_price']*$p_qty; $total += $sum; echo "<tr>"; echo "<td align='center'>"; echo $i += 1; echo "</td>"; echo "<td>" . $row["p_name"] . "</td>"; echo "<td align='right'>" .number_format($row['p_price'],2) ."</td>"; echo "<td align='right'>$p_qty</td>"; echo "<td align='right'>".number_format($sum,2)."</td>"; echo "</tr>"; } echo "<tr>"; echo "<td align='right' colspan='4'><b>รวม</b></td>"; echo "<td align='right'>"."<b>".number_format($total,2)."</b>"."</td>"; echo "</tr>"; ?> </table> </div> </div> </div> <div class="container"> <div class="row"> <div class="col-md-4"></div> <div class="col-md-5" style="background-color:#f4f4f4"> <h3 align="center" style="color:green"> <span class="glyphicon glyphicon-shopping-cart"> </span> confirm cart </h3> <form name="formlogin" action="saveorder.php" method="POST" id="login" class="form-horizontal"> <div class="form-group"> <div class="col-sm-12"> <input type="text" name="name" class="form-control" required placeholder="ชื่อ-สกุล" /> </div> </div> <div class="form-group"> <div class="col-sm-12"> <textarea name="address" class="form-control" rows="3" required placeholder="ที่อยู่ในการส่งสินค้า"></textarea> </div> </div> <div class="form-group"> <div class="col-sm-12"> <input type="text" name="phone" class="form-control" required placeholder="เบอร์โทรศัพท์" /> </div> </div> <div class="form-group"> <div class="col-sm-12"> <input type="email" name="email" class="form-control" required placeholder="อีเมล์" /> </div> </div> <div class="form-group"> <div class="col-sm-12" align="center"> <button type="submit" class="btn btn-primary" id="btn"> ยืนยันสั่งซื้อ </button> </div> </div> </form> </div> </div> </div> </body> </html> |
ผลการทำงาน
คลิปทั้งหมด
ปล.งดให้คำปรึกษาการเขียนเว็บด้วย adobe dreamweaver แล้วครับ
ไปฝึกเขียนแบบใหม่ดีกว่าครับ คลิปสอนคลิก