ThinkPHP's method of implementing order digital reminder function

墨辰丷
Release: 2023-03-28 12:24:01
Original
1900 people have browsed it

This article mainly introduces the method of thinkPHP to implement the order digital reminder function, involving the implementation skills of thinkPHP database query, traversal and front-end display related functions. Friends in need can refer to the

The operation effect diagram is as follows:

html:

  • 全部{sh:$num.all}
  • 待付款 {sh:$num.unpaid}
  • 待发货 {sh:$num.unsent}
  • 待收货 {sh:$num.unresevied}
  • 已收货 {sh:$num.resevied}
Copy after login

php:

// 各种状态的数字提醒 $whereall = array('member_id' => $this->member_id); $allorder = $this->orderModel->where($whereall)->select(); $num = array('all'=>0,'unpaid'=>0,'unsent'=>0,'unresevied'=>0,'resevied'=>0); foreach ($allorder as $k => $order) { if ( $order['paytime'] == 0 ) { $num['unpaid']++ ; } if ($order['paytime'] != 0 && $order['sendtime'] == 0) { $num['unsent'] ++ ; } if ($order['paytime'] != 0 && $order['sendtime'] != 0 && $order['receivetime'] == 0) { $num['unresevied'] ++ ; } if ($order['paytime'] != 0 && $order['sendtime'] != 0 && $order['receivetime'] != 0) { $num['resevied'] ++ ; } $num['all'] ++ ; } $this->assign('num',$num);
Copy after login

This time the value is passed in the form of an array, which is consistent.

Add a fixed layout effect

css:

Copy after login

The above is the entire article Content, I hope it will be helpful to everyone’s study.


Related recommendations:

phpEncryption methods during development

phpDetailed explanation of session application

PHP method to implement the function of randomly generating watermark images

The above is the detailed content of ThinkPHP's method of implementing order digital reminder function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!