suchen
HeimBackend-EntwicklungPHP-Tutorialphp实现购物车功能(上)_php技巧

本文分两篇为大家介绍php实现购物车功能,具有一定的参考价值,相信大家一定喜欢。

1、需求分析

 我们需要找到一种将数据库连接到用户的浏览器的方法。用户能够按目录浏览商品。 用户应该能够从商品目录中选取商品以便此后的购买。我们也要能够记录他们选中的物品。 当用户完成购买,要合计他们的订单,获取运送商品细节,并处理付款。 创建一个管理界面,以便管理员在上面添加、编辑图书和目录。

2、解决方案

2.1 用户视图



2.2 管理员视图


2.3 Book-O-Rama中的文件列表

3、实现数据库3.1 创建book_sc数据库的SQL代码

CREATE DATABASE book_sc; #创建book_sc数据库 
 
USE book_sc; #使用book_sc数据库 
 
CREATE TABLE customers #创建用户表 
( 
 customerid INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, 
 name CHAR(60) NOT NULL, 
 address CHAR(80) NOT NULL, 
 city CHAR(30) NOT NULL, 
 state CHAR(10), 
 zip CHAR(10), 
 country CHAR(20) NOT NULL 
); 
 
CREATE TABLE orders #创建订单表 
( 
 orderid INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, 
 customerid INT UNSIGNED NOT NULL, 
 amount FLOAT(6,2), 
 date DATE NOT NULL, 
 order_status CHAR(10), 
 ship_name CHAR(60) NOT NULL, 
 ship_address CHAR(80) NOT NULL, 
 ship_city CHAR(30) NOT NULL, 
 ship_state CHAR(20), 
 ship_zip CHAR(10), 
 ship_country CHAR(20) NOT NULL 
); 
 
CREATE TABLE books #创建图书表 
( 
 isbn CHAR(13) NOT NULL PRIMARY KEY, 
 author CHAR(80), 
 title CHAR(100), 
 catid INT UNSIGNED, 
 price FLOAT(4,2) NOT NULL, 
 description VARCHAR(255) 
); 
 
CREATE TABLE categories #创建目录表 
( 
 catid INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, 
 catname CHAR(60) NOT NULL 
); 
 
CREATE TABLE order_items #订单物品表 
( 
 orderid INT UNSIGNED NOT NULL, 
 isbn CHAR(13) NOT NULL, 
 item_price FLOAT(4,2) NOT NULL, 
 quantity TINYINT UNSIGNED NOT NULL, 
 PRIMARY KEY(orderid,isbn) 
); 
 
CREATE TABLE admin #管理员表 
( 
 username char(16) NOT NULL PRIMARY KEY, 
 password CHAR(40) NOT NULL 
); 
 
GRANT SELECT,INSERT,UPDATE,DELETE 
on book_sc.* 
to book_sc@localhost IDENTIFIED by 'password'; 

3.2 数据库测试数据文档

USE book_sc; 
 
 
INSERT INTO books VALUES ('0672329166','Luke Welling and Laura Thomson','PHP and MySQL Web Development',1,49.99, 
'PHP & MySQL Web Development teaches the reader to develop dynamic, secure e-commerce web sites. You will learn to integrate and implement these technologies by following real-world examples and working sample projects.'); 
INSERT INTO books VALUES ('067232976X','Julie Meloni','Sams Teach Yourself PHP, MySQL and Apache All-in-One',1,34.99, 
'Using a straightforward, step-by-step approach, each lesson in this book builds on the previous ones, enabling you to learn the essentials of PHP scripting, MySQL databases, and the Apache web server from the ground up.'); 
INSERT INTO books VALUES ('0672319241','Sterling Hughes and Andrei Zmievski','PHP Developer\'s Cookbook',1,39.99, 
'Provides a complete, solutions-oriented guide to the challenges most often faced by PHP developers\r\nWritten specifically for experienced Web developers, the book offers real-world solutions to real-world needs\r\n'); 
 
INSERT INTO categories VALUES (1,'Internet'); 
INSERT INTO categories VALUES (2,'Self-help'); 
INSERT INTO categories VALUES (5,'Fiction'); 
INSERT INTO categories VALUES (4,'Gardening'); 
 
INSERT INTO admin VALUES ('admin', sha1('admin')); 

4、实现在线目录


 主页-目录
由以下代码实现:
4.1 index.php

<&#63;php 
 
/** 
 * @author switch 
 * @copyright 2015 
 * 网站首页,显示系统中的图书目录 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); //开始会话 
 do_html_header('Welcome to Book-O-Rama'); //页头 
 
 echo "<p>Please choose a category:</p>"; 
 
 $cat_array = get_categories(); //从数据库获取目录 
 
 display_categories($cat_array); //显示目录链接 
 
 if(isset($_SESSION['admin_user'])) //如果是管理员,显示管理员操作 
 display_button("admin.php","admin-menu","Admin Menu"); 
 do_html_footer(); //页尾 
&#63;> 

4.2 book_fns.php文件中的函数get_categories()

function get_categories() //从数据库中获取目录列表 
 { 
 $conn = db_connect(); //连接数据库 
 $query = "select catid,catname from categories"; 
 $result = @$conn ->query($query); 
 if(!$result) //查询失败,返回false 
  return false; 
 $num_cats = @$result ->num_rows; 
 if($num_cats == 0) //数据库中无目录,返回false 
  return false; 
 $result = db_result_to_array($result); 
 return $result; 
 } 

4.3 output_fns.php文件中的函数display_categories()

function display_categories($cat_array) //输出目录 
 { 
 if(!is_array($cat_array)) 
 { 
  echo "<p>No categories currently available</p>"; 
  return; 
 } 
 echo "<ul>"; 
 foreach($cat_array as $row) 
 { 
  $url = "show_cat.php&#63;catid=". $row['catid']; 
  $title = $row['catname']; 
  echo "<li>"; 
  do_html_URL($url,$title); 
  echo "</li>"; 
 } 
 echo "</ul>"; 
 echo "<hr/>"; 
 } 

4.4 db_fns.php文件中的函数db_result_to_array()

function db_result_to_array($result) //结果到数组 
 { 
 $res_array = array(); 
  
 for($count = 0; $row = $result ->fetch_assoc(); $count++) 
  $res_array[$count] = $row; 
  
 return $res_array; 
 } 


Internet目录下的所有图书
 

由以下代码实现:

4.5 show_cat.php

<&#63;php 
 
/** 
 * @author switch 
 * @copyright 2015 
 * 显示特定目录包含的所有图书 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); 
 
 @$catid = $_GET['catid']; 
 $name = get_category_name($catid); 
 
 do_html_header($name); 
 
 $book_array = get_books($catid); 
 
 display_books($book_array); 
 
 //如果是管理员,显示管理界面按钮 
 if(isset($_SESSION['admin_user'])) 
 { 
 display_button("index.php","continue","Continue Shopping"); 
 display_button("admin.php","admin-menu","Admin Menu"); 
 display_button("edit_category_form.php&#63;catid=". $catid,"edit-category","Edit Category"); 
 } 
 else //否则显示主界面按钮 
 { 
 display_button("index.php","continue-shopping","Continue Shopping"); 
 } 
 do_html_footer(); 
&#63;> 

4.6 book_fns.php文件中的函数get_category_name()

function get_category_name($catid) //获取目录名 
 { 
 $conn = db_connect(); //连接数据库 
 $query = "select catname from categories where catid = '". $catid ."'"; 
 $result = @$conn ->query($query); 
 if(!$result) //查询失败,原因为查询出错 
  return false; 
  
 $num_cats = @$result ->num_rows; 
  
 if($num_cats == 0) //查询失败,原因为无目录 
  return false; 
 $row = $result ->fetch_object(); 
 return $row ->catname; 
 } 

4.8 book_fns.php文件中的函数get_books()

function get_books($catid) //从数据库中获取图书 
 { 
 if((!$catid) || ($catid == '')) //如果目录ID为空 
  return false; 
  
 $conn = db_connect(); 
 $query = "select * from books where catid = '". $catid ."'"; 
 $result = @$conn ->query($query); 
 if(!$result) //查询失败,原因为查询出错 
  return false; 
  
 $num_books = @$result ->num_rows; 
  
 if($num_books == 0) //查询失败,原因为无图书 
  return false; 
  
 $result = db_result_to_array($result); 
 return $result; 
 } 

4.9 output_fns文件中的函数display_books()

function display_books($book_array) //输出图书 
 { 
 if(!is_array($book_array)) 
  echo "<p>No books currently available in this category</p>"; 
 else //有图书,建表 
 { 
  echo "<table width = \"100%\" border=\"0\">"; 
  
  foreach($book_array as $row) 
  { 
  $url = "show_book.php&#63;isbn=". $row['isbn']; 
  echo "<tr><td>"; 
  // 如果图片存在 
  if(@file_exists("images/". $row['isbn'] .".jpg")) 
  { 
   $title = "<img  src="/static/imghwm/default1.png"  data-src="http://files.jb51.net/file_images/article/201601/2016010516190814.png"  class="lazy"  src=\"images/". $row['isbn'] .".jpg\" style=\"border: 1px solid black\"/ alt="php实现购物车功能(上)_php技巧" >"; 
   do_html_URL($url,$title); 
  } 
  else 
   echo " "; 
   
  echo "</td><td>"; 
  $title = $row['title'] ." by ". $row['author']; 
  do_html_URL($url,$title); 
  echo "</td></tr>"; 
  } 
  echo "</table>"; 
 } 
 echo "<hr/>"; 
 } 


PHP and MySQL Web Development的详细信息

由以下代码实现:

4.10 show_book.php

<&#63;php 
 /** 
 * @author switch 
 * @copyright 2015 
 * 显示特定图书的详细信息 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); 
 
 $isbn = $_GET['isbn']; 
 
 $book = get_book_details($isbn); 
 do_html_header($book['title']); 
 display_book_details($book); 
 
 //设置继续按钮 
 $target = "index.php"; 
 if($book['catid']) 
 $target = "show_cat.php&#63;catid = ". $book['catid']; 
 
 //如果是管理员,显示编辑链接 
 if(check_admin_user()) 
 { 
 display_button("edit_book_form.php&#63;isbn=". $isbn,"edit-item","Edit Item"); 
 display_button("admin.php","admin-menu","Admin Menu"); 
 display_button($target,"continue","Continue"); 
 } 
 else 
 { 
 display_button("show_cart.php&#63;new=". $isbn,"add-to-cart","Add". $book['title']." To My Shopping Cart"); 
 display_button($target,"continue-shopping","Continue Shopping"); 
 } 
 do_html_footer(); 
&#63;> 

4.11 book_fns.php文件中的函数get_book_details()

function get_book_details($isbn) //从数据库中获取一本图书的详细说明 
 { 
 if((!$isbn) || ($isbn == '')) //如果图书统一书号为空 
  return false; 
  
 $conn = db_connect(); //连接数据库 
 $query = "select * from books where isbn = '". $isbn ."'"; 
 $result = @$conn ->query($query); 
 if(!$result) //查询失败,原因为查询出错 
  return false; 
 $result = @$result ->fetch_assoc(); 
 return $result; 
 } 

4.12 output_fns.php文件中的函数display_book_details()

 

function display_book_details($book) //输出图书详细说明 
 { 
 if(is_array($book)) 
 { 
  echo "<table><tr>"; 
  // 如果图片存在 
  if(@file_exists("images/". $book['isbn'] .".jpg")) 
  { 
  $size = getimagesize("images/". $book['isbn'] .".jpg"); 
  if(($size[0] > 0) && ($size[1] > 0)) 
  { 
   echo "<td><img  src="/static/imghwm/default1.png"  data-src="http://files.jb51.net/file_images/article/201601/2016010516190915.png"  class="lazy"  src=\"images/". $book['isbn'] .".jpg\" style=\"border: 1px solid black\"/ alt="php实现购物车功能(上)_php技巧" ></td>"; 
  } 
  } 
  echo "<td><ul>"; 
  echo "<li><strong>Author:</strong>"; 
  echo $book['author']; 
  echo "</li><li><strong>ISBN:</strong>"; 
  echo $book['isbn']; 
  echo "</li><li><strong>Our Price:</strong>"; 
  echo number_format($book['price'],2); 
  echo "</li><li><strong>Description:</strong>"; 
  echo $book['description']; 
  echo "</li></ul></td></tr></table>"; 
 } 
 else 
 { 
  echo "<p>The details of this book cannot be displayed at this time.</p>"; 
 } 
 echo "<hr/>"; 
 } 

5、实现购物车


不使用参数的脚本只显示购物车的内容


带有参数new的脚本将添加一个物品到购物车

由以下代码实现:
5.1 show_cart.php

<&#63;php 
 
/** 
 * @author switch 
 * @copyright 2015 
 * 显示用户购物车的内容。也用来向购物车添加图书 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); 
 
 @$new = $_GET['new']; 
 
 if($new) 
 { 
 if(!isset($_SESSION['cart'])) //购物车中无物品 
 { 
  $_SESSION['cart'] =array(); 
  $_SESSION['items'] = 0; 
  $_SESSION['total_price'] = '0.00'; 
 } 
  
 if(isset($_SESSION['cart'][$new])) 
 { 
  $_SESSION['cart'][$new]++; 
 } 
 else 
 { 
  $_SESSION['cart'][$new] = 1; 
 } 
  
 $_SESSION['total_price'] = calculate_price($_SESSION['cart']); 
 $_SESSION['items'] = calculate_items($_SESSION['cart']); 
 } 
 
 if(isset($_POST['save'])) 
 { 
 foreach($_SESSION['cart'] as $isbn => $qty) 
 { 
  if($_POST[$isbn] == '0') 
  unset($_SESSION['cart'][$isbn]); 
  else 
  $_SESSION['cart'][$isbn] = $_POST[$isbn]; 
 } 
 
 $_SESSION['total_price'] = calculate_price($_SESSION['cart']); 
 $_SESSION['items'] = calculate_items($_SESSION['cart']); 
 } 
 
 do_html_header("Your shopping cart"); 
 
 if((@$_SESSION['cart']) && (array_count_values($_SESSION['cart']))) 
 { 
 display_cart($_SESSION['cart']); 
 } 
 else 
 { 
 echo "<p>There are no items in your cart</p><hr/>"; 
 } 
 
 $target = "index.php"; 
 
 //如果只有一种物品添加到购物车,可以继续购物 
 if($new) 
 { 
 $details = get_book_details($new); 
 if($details['catid']) 
 { 
  $target = "show_cat.php&#63;catid=". $details['catid']; 
 } 
 } 
 
 display_button($target,"continue-shopping","Continue Shopping"); 
 
 //SSL链接--需要配置,PS:没配置,所以不能使用 
// $path = $_SERVER['PHP_SELF']; //获取路径 
// $server = $_SERVER['SERVER_NAME']; //获取主机名 
// $path = str_replace('show_cart.php','',$path); 
// display_button("https://". $server . $path ."checkout.php","go-to-checkout","Go To Checkout"); 
 
 //非SSL链接 
 display_button("checkout.php","go-to-checkout","Go To Checkout"); 
 
 do_html_footer(); 
&#63;> 

5.2 output_fns.php文件中的函数display_cart()

function display_cart($cart,$change = true,$images = 1) //显示购物车 
 { 
 echo "<table border=\"0\" width=\"100%\" cellspacing=\"0\"> 
  <form action=\"show_cart.php\" method=\"post\"> 
   <tr> 
   <th colspan=\"". (1 + $images) ."\" bgcolor=\" #cccccc\">Item</th> 
   <th bgcolor=\"#cccccc\">Price</th> 
   <th bgcolor=\"#cccccc\">Quantity</th> 
   <th bgcolor=\"#cccccc\">Total</th> 
   </tr>"; 
 //输出购物车中每一项 
 foreach($cart as $isbn => $qty) 
 { 
  $book = get_book_details($isbn); 
  echo "<tr>"; 
  if($images == true) 
  { 
  echo "<td align=\"left\">"; 
  if(file_exists("images/". $isbn .".jpg")) 
  { 
   $size = getimagesize("images/". $isbn .".jpg"); 
   if(($size[0] > 0) && ($size[1] > 1)) //图片长宽 
   { 
   echo "<img src="/static/imghwm/default1.png"  data-src="http://files.jb51.net/file_images/article/201601/2016010516190917.png"  class="lazy"  src=\"images/". $isbn .".jpg\" 
    style=\"border: 1px solid black\" 
     style="max-width:90%"". ($size[0] / 3) ."\" 
    height=\"". ($size[1] / 3) ."\"/>"; 
   } 
  } 
  else 
   echo " "; 
  echo "</td>"; 
  } 
  echo "<td align=\"left\"> 
   <a href=\"show_book.php&#63;isbn=". $isbn ."\">". $book['title'] ."</a> by". $book['author'] ."</td> 
   <td align=\"center\">\$". number_format($book['price'],2) ."</td><td align=\"center\">"; 
  
  //如果允许更改数量 
  if ($change == true) 
  { 
  echo "<input type=\"text\" name=\"".$isbn."\" value=\"".$qty."\" size=\"3\">"; 
  } 
  else 
  { 
  echo $qty; 
  } 
  echo "</td><td align=\"center\">\$".number_format($book['price']*$qty,2)."</td></tr>\n"; 
 } 
 
  
 //总数 
 echo "<tr> 
  <th colspan=\"". (2 + $images) ."\" bgcolor = \"#cccccc\"> </th> 
  <th align = \"center\" bgcolor=\"#cccccc\">". $_SESSION['items'] ."</th> 
  <th align = \"center\" bgcolor=\"#cccccc\">\$". number_format($_SESSION['total_price'],2) ."</th></tr>"; 
  
 //保存按钮 
 if($change == true) 
 { 
  echo "<tr> 
   <td colspan = \"". (2 + $images) ."\"> </td> 
   <td align = \"center \"> 
   <input type=\"hidden\" name=\"save\"value=\"true\" /> 
   <input type = \"image\" src = \"images/save-changes.gif\" border = \" 0 \" alt = \" Save Changes \" /> 
   </td> 
   <td> </td> 
   </tr>"; 
 } 
 echo "</form></table>"; 
 } 

5.3 book_fns.php文件中的函数calculate_price()

function calculate_price($cart) //计算购物车中物品总价 
 { 
 $price = 0.0; 
 if(is_array($cart)) 
 { 
  $conn = db_connect(); 
  foreach($cart as $isbn => $qty) 
  { 
  $query = "select price from books where isbn ='". $isbn ."'"; 
  $result = $conn ->query($query); 
  if($result) 
  { 
   $item = $result ->fetch_object(); 
   $item_price = $item ->price; 
   $price += $item_price * $qty; 
  } 
  } 
 } 
 return $price; 
 } 

5.4 book_fns.php文件中的函数calculate_items()

function calculate_items($cart) //计算购物车中的物品总数 
 { 
 $items = 0; 
 if(is_array($cart)) 
 { 
  foreach($cart as $isbn => $qty) 
  $items += $qty; 
 } 
 return $items; 
 } 


获取顾客的详细信息

由以下代码实现:
5.5 checkout.php

<&#63;php 
 
/** 
 * @author switch 
 * @copyright 2015 
 * 向用户显示所有的订单细节。获取商品运送细节 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); 
 
 do_html_header("Checkout"); 
 
 if((@$_SESSION['cart']) && (array_count_values($_SESSION['cart']))) 
 { 
 display_cart($_SESSION['cart'],false,0); 
 display_checkout_form(); 
 } 
 else 
 { 
 echo "<p>Thers are no items in your cart</p>"; 
 } 
 
 display_button("show_cart.php","continue-shopping","Continue Shopping"); 
 
 do_html_footer(); 
&#63;> 

5.6 output_fns.php文件中的display_checkout_form()

function display_checkout_form() //输出付款台界面 
 { 
 &#63;> 
  <br /> 
  <table border="0" width="100%" cellspacng="0"> 
  <form action="purchase.php" method="post"> 
   <tr> <!--客户信息--> 
   <th colspan="2" bgcolor="#cccccc">Your Details</th> 
   </tr> 
   <tr> 
   <td>Name</td> 
   <td><input type="text" name="name" value="" maxlength="40" size="40"/></td> 
   </tr> 
   <tr> 
   <td>Address</td> 
   <td><input type="text" name="address" value="" maxlength="40" size="40"/></td> 
   </tr> 
   <tr> 
   <td>City/Suburb</td> 
   <td><input type="text" name="city" value="" maxlength="20" size="40"/></td> 
   </tr> 
   <tr> 
   <td>State/Province</td> 
   <td><input type="text" name="state" value="" maxlength="20" size="40"/></td> 
   </tr> 
   <tr> 
   <td>Postal Code or Zip Code</td> 
   <td><input type="text" name="zip" value="" maxlength="10" size="40"/></td> 
   </tr> 
   <tr> 
   <td>Country</td> 
   <td><input type="text" name="country" value="" maxlength="10" size="40"/></td> 
   </tr> 
   
   <tr> <!--运单信息--> 
   <th colspan="2" bgcolor="#cccccc">Shipping Address(leave blank if as above)</th> 
   </tr> 
   <tr> 
   <td>Name</td> 
   <td><input type="text" name="ship_name" maxlength=""/></td> 
   </tr> 
   <tr> 
   <td>Address</td> 
   <td><input type="text" name="ship_address" value="" maxlength="40" size="40"/></td> 
   </tr> 
   <tr> 
   <td>City/Suburb</td> 
   <td><input type="text" name="ship_city" value="" maxlength="20" size="40"/></td> 
   </tr> 
   <tr> 
   <td>State/Province</td> 
   <td><input type="text" name="ship_state" value="" maxlength="20" size="40"/></td> 
   </tr> 
   <tr> 
   <td>Postal Code or Zip Code</td> 
   <td><input type="text" name="ship_zip" value="" maxlength="10" size="40"/></td> 
   </tr> 
   <tr> 
   <td>Country</td> 
   <td><input type="text" name="ship_country" value="" maxlength="20" size="40"/></td> 
   </tr> 
   <tr> 
   <td colspan="2" align="center"> 
    <p> 
    <strong>Please press Purchase to confirm your purchase, or Continue Shopping to add or remove items.</strong> 
    </p> 
    <&#63;php display_form_button("purchase","Purchase There Items"); &#63;> 
   </td> 
   </tr> 
  </form> 
  </table> 
  <hr /> 
 <&#63;php 
 } 

   

已填写好信息的订单


获取客户信用卡信息

由以下代码实现:
5.7 purchase.php

<&#63;php 
 
/** 
 * @author switch 
 * @copyright 2015 
 * 从用户获取付款细节 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); 
 
 do_html_header("Checkout"); 
 
 //创建变量 
 $name = $_POST['name']; 
 $address = $_POST['address']; 
 $city = $_POST['city']; 
 $zip = $_POST['zip']; 
 $country = $_POST['country']; 
 
 //如果订单细节填满 
 if(($_SESSION['cart']) && ($name) && ($address) && ($city) && ($zip) && ($country)) 
 { 
 if(insert_order($_POST) != false) 
 { 
  display_cart($_SESSION['cart'],false,0); 
  
  display_shipping(calculate_shipping_cost()); 
  
  display_card_form($name); 
  
  display_button("show_cart.php","continue-shopping","Continue Shopping"); 
 } 
 else 
 { 
  echo "<p>Could not store data, please try again.</p><hr/>"; 
  display_button('checkout.php','back','Back'); 
 } 
 } 
 else 
 { 
 echo "<p>You did not fill in all the fields, please try again.</p><hr/>"; 
 display_button('checkout.php','back','Back'); 
 } 
 do_html_footer(); 
&#63;> 

5.8 order_fns.php文件中的函数insert_order()

function insert_order($order_details) //提取订单细节作为变量 
 { 
 extract($order_details); 
  
 //设置邮寄地址为当前地址 
 if((!$ship_name) && (!$ship_address) && (!$ship_city) && (!$ship_state) && (!$ship_zip) &&(!$ship_country)) 
 { 
  $ship_name = $name; 
  $ship_address = $address; 
  $ship_city = $city; 
  $ship_state = $state; 
  $ship_zip = $zip; 
  $ship_country = $country; 
 } 
  
 //连接数据库 
 $conn = db_connect(); 
  
 //事务开始,必须关闭自动提交 
 $conn ->autocommit(false); 
  
 $query = "select customrid from customers where 
   name ='". $name ."' and address = '". $address ."' 
   and city = '". $city ."' and state = '". $state ."' 
   and zip = '". $zip ."' and country = '". $country ."'"; 
   
 $result = $conn ->query($query); 
  
 if(@$result ->num_rows > 0) 
 { 
  $customer = $result ->fetch_object(); 
  $customerid = $customer ->customerid; 
 } 
 else 
 { 
  $query = "insert into customers values 
   ('','". $name ."','". $address ."','". $city ."','". $state ."','". $zip ."','". $country ."')"; 
  $result = $conn ->query($query); 
  
  if(!$result) 
  return false; 
 } 
  
 $customerid = $conn ->insert_id; //返回上次查询中自增量的ID 
  
 $date = date("Y-m-d"); 
  
 $query ="insert into orders values 
  ('','". $customerid ."','". $_SESSION['total_price'] ."','". $date ."','PARTIAL','". $ship_name ."','". $ship_address ."','". $ship_city ."','". $ship_state ."','". $ship_zip ."','". $ship_country ."')"; 
   
 $result = $conn ->query($query); 
 if(!$result) 
  return false; 
  
 $query = "select orderid from orders where 
   customerid ='". $customerid ."' and 
   amount > (". $_SESSION['total_price'] ."-.001) and 
   amount < (". $_SESSION['total_price'] ."+.001) and 
   date ='". $date ."' and 
   order_status = 'PARTIAL' and 
   ship_name ='". $ship_name ."' and 
   ship_address ='". $ship_address ."' and 
   ship_city ='". $ship_city ."' and 
   ship_state ='". $ship_state ."' and 
   ship_zip ='". $ship_zip ."' and 
   ship_country ='". $ship_country ."'"; 
  
 $result = $conn ->query($query); 
  
 if($result ->num_rows > 0) 
 { 
  $order = $result ->fetch_object(); 
  $orderid = $order ->orderid; 
 } 
 else 
  return false; 
  
 foreach($_SESSION['cart'] as $isbn => $quantity) 
 { 
  $detail = get_book_details($isbn); 
  $query = "delete from order_items where 
   orderid = '". $orderid ."' and isbn = '". $isbn ."'"; 
  $result = $conn ->query($query); 
  
  $query = "insert into order_items values 
   ('". $orderid ."','". $isbn ."',". $detail['price'] .",$quantity)"; 
  $result = $conn ->query($query); 
  if(!$result) 
  return false; 
 } 
  
 //事务关闭,开启自动提交 
 $conn ->commit(); 
 $conn ->autocommit(true); 
  
 return $orderid; 
 } 

5.9 output_fns.php文件中的函数display_shipping()

function display_shipping($shipping) //输出包含运费的总价 
 { 
 &#63;> 
  <table border="0" width="100%" cellspacing="0"> 
  <tr> 
   <td align="left">Shipping</td> 
   <td align="right"> <&#63;php echo number_format($shipping, 2); &#63;></td> 
  </tr> 
  <tr> 
   <th bgcolor="#cccccc" align="left">TOTAL INCLUDING SHIPPING</th> 
   <th bgcolor="#cccccc" align="right">$ <&#63;php echo number_format($shipping+$_SESSION['total_price'], 2); &#63;></th> 
  </tr> 
  </table> 
  <br /> 
 <&#63;php 
 } 

5.10 output_fns.php文件中的函数display_card_form()

function display_card_form($name) //输出信用卡信息 
 { 
 &#63;> 
  <table border="0" width="100%" cellspacing="0"> 
  <form action="process.php" method="post"> 
   <tr> 
   <th colspan="2" bgcolor="#cccccc">Credit Card Details</th> 
   </tr> 
   <tr> 
   <td>Type</td> 
   <td> 
    <select name="card_type"> 
    <option value="VISA">VISA</option> 
    <option value="MasterCard">MasterCard</option> 
    <option value="American Express">American Express</option> 
    </select> 
   </td> 
   </tr> 
   <tr> 
   <td>Number</td> 
   <td><input type="text" name="card_number" value="" maxlength="16" size="40"/></td> 
   </tr> 
   <tr> 
   <td>AMEX code (if required)</td> 
   <td><input type="text" name="amex_code" value="" maxlength="4" size="4"/></td> 
   </tr> 
   <tr> 
   <td>Expiry Date</td> 
   <td>Month 
    <select name="card_month"> 
    <option value="01">01</option> 
    <option value="02">02</option> 
    <option value="03">03</option> 
    <option value="04">04</option> 
    <option value="05">05</option> 
    <option value="06">06</option> 
    <option value="07">07</option> 
    <option value="08">08</option> 
    <option value="09">09</option> 
    <option value="10">10</option> 
    <option value="11">11</option> 
    <option value="12">12</option> 
    </select> 
    Year 
    <select name="card_year"> 
    <&#63;php 
     for($y = date("Y"); $y < date("Y") + 10; $y++) 
     echo "<option value =\"". $y ."\">" . $y ."</option>"; 
    &#63;> 
    </select> 
   </td> 
   </tr> 
   <tr> 
   <td>Name on Card</td> 
   <td><input type="text" name="card_name" value="<&#63;php echo $name; &#63;>" maxlength="40" size="40"/></td> 
   </tr> 
   <tr> 
   <td colspan="2" align="center"> 
    <p> 
    <strong>Please press Purchase to confirm yout purchase, or Continue Shopping to add or remove items</strong> 
    </p> 
    <&#63;php display_form_button('purchase','Purchase These Items'); &#63;> 
   </td> 
   </tr> 
  </table> 
 <&#63;php 
 }

 5.11 db_fns.php文件中的函数db_connect()

function db_connect() //连接数据库 
 { 
 $result = new mysqli('localhost','book_sc','password','book_sc'); 
 if(!$result) //连接失败 
  return false; 
 $result ->autocommit(true); 
 return $result; 
 } 

6、实现付款


已填写好信息的信用卡详细信息


购物成功

由以下代码实现:
6.1 process.php

<&#63;php 
 
/** 
 * @author switch 
 * @copyright 2015 
 * 处理付款细节,将订单添加到数据库 
 */ 
 //require_once语句和require语句完全相同,唯一区别是PHP会检查该文件是否已经被包含过,如果是则不会再次包含。 
 require_once('book_sc_fns.php'); 
 
 session_start(); 
 
 do_html_header('Checkout'); 
 
 //创建变量 
 $card_type = $_POST['card_type']; 
 $card_number = $_POST['card_number']; 
 $card_month = $_POST['card_month']; 
 $card_year = $_POST['card_year']; 
 $card_name = $_POST['card_name']; 
 
 if(($_SESSION['cart']) && ($card_type) && ($card_number) && ($card_month) && ($card_year) &&($card_name)) 
 { 
 //显示没有图片,不允许更改数量的购物车 
 display_cart($_SESSION['cart'],false,0); 
  
 display_shipping(calculate_shipping_cost()); 
  
 if(process_card($_POST)) 
 { 
  //清空购物车 
  session_destroy(); 
  //这里可以写一些关于信用卡接口调用的函数,调用银行写好的接口 
  echo "<p>Thank you for shopping with us. Your order has been placed.</p>"; 
  
  display_button("index.php","continue-shopping","Continue Shopping"); 
 } 
 else 
 { 
  echo "<p>Could not process your card. Please contact the card issuer or try again.</p>"; 
  display_button("purchase.php","back","Back"); 
 } 
 } 
 else 
 { 
 echo "<p>You did not fill in all the fields,please try again.</p><hr/>"; 
 display_button("purchase.php","back","Back"); 
 } 
 do_html_footer(); 
&#63;> 

以上就是php实现购物车功能的前篇,代码很详细,希望对大家的学习有所帮助,之后还有下篇分享给大家,不要错过。

Stellungnahme
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
PHP: Eine Einführung in die serverseitige SkriptsprachePHP: Eine Einführung in die serverseitige SkriptspracheApr 16, 2025 am 12:18 AM

PHP ist eine serverseitige Skriptsprache, die für dynamische Webentwicklung und serverseitige Anwendungen verwendet wird. 1.PHP ist eine interpretierte Sprache, die keine Zusammenstellung erfordert und für die schnelle Entwicklung geeignet ist. 2. PHP -Code ist in HTML eingebettet, wodurch es einfach ist, Webseiten zu entwickeln. 3. PHP verarbeitet die serverseitige Logik, generiert die HTML-Ausgabe und unterstützt Benutzerinteraktion und Datenverarbeitung. 4. PHP kann mit der Datenbank interagieren, die Einreichung von Prozessformularen und serverseitige Aufgaben ausführen.

PHP und das Web: Erforschen der langfristigen AuswirkungenPHP und das Web: Erforschen der langfristigen AuswirkungenApr 16, 2025 am 12:17 AM

PHP hat das Netzwerk in den letzten Jahrzehnten geprägt und wird weiterhin eine wichtige Rolle bei der Webentwicklung spielen. 1) PHP stammt aus dem Jahr 1994 und ist aufgrund seiner Benutzerfreundlichkeit und der nahtlosen Integration in MySQL die erste Wahl für Entwickler. 2) Zu den Kernfunktionen gehört das Generieren dynamischer Inhalte und die Integration in die Datenbank, sodass die Website in Echtzeit aktualisiert und auf personalisierte Weise angezeigt wird. 3) Die breite Anwendung und das Ökosystem von PHP hat seine langfristigen Auswirkungen angetrieben, steht jedoch auch mit Versionsaktualisierungen und Sicherheitsherausforderungen gegenüber. 4) Leistungsverbesserungen in den letzten Jahren, wie die Veröffentlichung von PHP7, ermöglichen es ihm, mit modernen Sprachen zu konkurrieren. 5) In Zukunft muss PHP sich mit neuen Herausforderungen wie Containerisierung und Microservices befassen, aber seine Flexibilität und die aktive Community machen es anpassungsfähig.

Warum PHP verwenden? Vorteile und Vorteile erläutertWarum PHP verwenden? Vorteile und Vorteile erläutertApr 16, 2025 am 12:16 AM

Zu den Kernvorteilen von PHP gehören einfacher Lernen, starke Unterstützung für Webentwicklung, reiche Bibliotheken und Rahmenbedingungen, hohe Leistung und Skalierbarkeit, plattformübergreifende Kompatibilität und Kosteneffizienz. 1) leicht zu erlernen und zu bedienen, geeignet für Anfänger; 2) gute Integration in Webserver und unterstützt mehrere Datenbanken. 3) leistungsstarke Frameworks wie Laravel; 4) hohe Leistung kann durch Optimierung erzielt werden; 5) mehrere Betriebssysteme unterstützen; 6) Open Source, um die Entwicklungskosten zu senken.

Debunking der Mythen: Ist PHP wirklich eine tote Sprache?Debunking der Mythen: Ist PHP wirklich eine tote Sprache?Apr 16, 2025 am 12:15 AM

PHP ist nicht tot. 1) Die PHP -Community löst aktiv Leistungs- und Sicherheitsprobleme, und Php7.x verbessert die Leistung. 2) PHP ist für die moderne Webentwicklung geeignet und wird in großen Websites häufig verwendet. 3) PHP ist leicht zu erlernen und der Server funktioniert gut, aber das Typsystem ist nicht so streng wie statische Sprachen. 4) PHP ist in den Bereichen Content-Management und E-Commerce immer noch wichtig, und das Ökosystem entwickelt sich weiter. 5) Optimieren Sie die Leistung über Opcache und APC und verwenden Sie OOP- und Designmuster, um die Codequalität zu verbessern.

Die PHP vs. Python -Debatte: Was ist besser?Die PHP vs. Python -Debatte: Was ist besser?Apr 16, 2025 am 12:03 AM

PHP und Python haben ihre eigenen Vor- und Nachteile, und die Wahl hängt von den Projektanforderungen ab. 1) PHP eignet sich für Webentwicklung, leicht zu lernen, reichhaltige Community -Ressourcen, aber die Syntax ist nicht modern genug, und Leistung und Sicherheit müssen beachtet werden. 2) Python eignet sich für Datenwissenschaft und maschinelles Lernen mit prägnanter Syntax und leicht zu erlernen. Es gibt jedoch Engpässe bei der Ausführungsgeschwindigkeit und des Speichermanagements.

Zweck von PHP: Erstellen dynamischer WebsitesZweck von PHP: Erstellen dynamischer WebsitesApr 15, 2025 am 12:18 AM

PHP wird verwendet, um dynamische Websites zu erstellen. Zu den Kernfunktionen gehören: 1. Dynamische Inhalte generieren und Webseiten in Echtzeit generieren, indem Sie eine Verbindung mit der Datenbank herstellen; 2. Verarbeiten Sie Benutzerinteraktions- und Formulareinreichungen, überprüfen Sie Eingaben und reagieren Sie auf Operationen. 3. Verwalten Sie Sitzungen und Benutzerauthentifizierung, um eine personalisierte Erfahrung zu bieten. 4. Optimieren Sie die Leistung und befolgen Sie die Best Practices, um die Effizienz und Sicherheit der Website zu verbessern.

PHP: Datenbanken und serverseitige Logik bearbeitenPHP: Datenbanken und serverseitige Logik bearbeitenApr 15, 2025 am 12:15 AM

PHP verwendet MySQLI- und PDO-Erweiterungen, um in Datenbankvorgängen und serverseitiger Logikverarbeitung zu interagieren und die serverseitige Logik durch Funktionen wie Sitzungsverwaltung zu verarbeiten. 1) Verwenden Sie MySQLI oder PDO, um eine Verbindung zur Datenbank herzustellen und SQL -Abfragen auszuführen. 2) Behandeln Sie HTTP -Anforderungen und Benutzerstatus über Sitzungsverwaltung und andere Funktionen. 3) Verwenden Sie Transaktionen, um die Atomizität von Datenbankvorgängen sicherzustellen. 4) Verhindern Sie die SQL -Injektion, verwenden Sie Ausnahmebehandlung und Schließen von Verbindungen zum Debuggen. 5) Optimieren Sie die Leistung durch Indexierung und Cache, schreiben Sie hochlesbarer Code und führen Sie die Fehlerbehandlung durch.

Wie verhindern Sie die SQL -Injektion in PHP? (Vorbereitete Aussagen, PDO)Wie verhindern Sie die SQL -Injektion in PHP? (Vorbereitete Aussagen, PDO)Apr 15, 2025 am 12:15 AM

Die Verwendung von Vorverarbeitungsanweisungen und PDO in PHP kann SQL -Injektionsangriffe effektiv verhindern. 1) Verwenden Sie PDO, um eine Verbindung zur Datenbank herzustellen und den Fehlermodus festzulegen. 2) Erstellen Sie Vorverarbeitungsanweisungen über die Vorbereitungsmethode und übergeben Sie Daten mit Platzhaltern und führen Sie Methoden aus. 3) Abfrageergebnisse verarbeiten und die Sicherheit und Leistung des Codes sicherstellen.

See all articles

Heiße KI -Werkzeuge

Undresser.AI Undress

Undresser.AI Undress

KI-gestützte App zum Erstellen realistischer Aktfotos

AI Clothes Remover

AI Clothes Remover

Online-KI-Tool zum Entfernen von Kleidung aus Fotos.

Undress AI Tool

Undress AI Tool

Ausziehbilder kostenlos

Clothoff.io

Clothoff.io

KI-Kleiderentferner

AI Hentai Generator

AI Hentai Generator

Erstellen Sie kostenlos Ai Hentai.

Heißer Artikel

R.E.P.O. Energiekristalle erklärten und was sie tun (gelber Kristall)
4 Wochen vorBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Beste grafische Einstellungen
4 Wochen vorBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. So reparieren Sie Audio, wenn Sie niemanden hören können
4 Wochen vorBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat -Befehle und wie man sie benutzt
4 Wochen vorBy尊渡假赌尊渡假赌尊渡假赌

Heiße Werkzeuge

VSCode Windows 64-Bit-Download

VSCode Windows 64-Bit-Download

Ein kostenloser und leistungsstarker IDE-Editor von Microsoft

DVWA

DVWA

Damn Vulnerable Web App (DVWA) ist eine PHP/MySQL-Webanwendung, die sehr anfällig ist. Seine Hauptziele bestehen darin, Sicherheitsexperten dabei zu helfen, ihre Fähigkeiten und Tools in einem rechtlichen Umfeld zu testen, Webentwicklern dabei zu helfen, den Prozess der Sicherung von Webanwendungen besser zu verstehen, und Lehrern/Schülern dabei zu helfen, in einer Unterrichtsumgebung Webanwendungen zu lehren/lernen Sicherheit. Das Ziel von DVWA besteht darin, einige der häufigsten Web-Schwachstellen über eine einfache und unkomplizierte Benutzeroberfläche mit unterschiedlichen Schwierigkeitsgraden zu üben. Bitte beachten Sie, dass diese Software

SublimeText3 Linux neue Version

SublimeText3 Linux neue Version

SublimeText3 Linux neueste Version

Dreamweaver CS6

Dreamweaver CS6

Visuelle Webentwicklungstools

MantisBT

MantisBT

Mantis ist ein einfach zu implementierendes webbasiertes Tool zur Fehlerverfolgung, das die Fehlerverfolgung von Produkten unterstützen soll. Es erfordert PHP, MySQL und einen Webserver. Schauen Sie sich unsere Demo- und Hosting-Services an.