Home  >  Article  >  Backend Development  >  Boole Education ThinkPHP Mall practical video tutorial courseware source code sharing

Boole Education ThinkPHP Mall practical video tutorial courseware source code sharing

黄舟
黄舟Original
2017-12-04 11:06:542186browse

In our daily development work, many friends will encounter projects in the developer mall. Today I will introduce to you "Boolean Education ThinkPHP Mall Practical Practice", which will lead you to learn how to use the TP framework to complete the steps of building the mall, so that everyone can understand TP Have a deeper understanding of the use of frameworks.

Boole Education ThinkPHP Mall practical video tutorial courseware source code sharing

Course playback address: http://www.php.cn/course/229.html

The teacher’s teaching style:

The teacher’s lectures are simple, clear, layer-by-layer analysis, interlocking, rigorous argumentation, rigorous structure, using the logical power of thinking to attract people Students' attention and rational control of the classroom teaching process. By listening to teachers' lectures, students not only learn knowledge, but also receive thinking training, and are also influenced and influenced by teachers' rigorous academic attitude.

The more difficult part in this video is the implementation of the shopping cart:

) The user does not log in with the user name and password, adds the product, closes the browser and opens it again without logging in with the user name and password. Password question: Are the items in the shopping cart still there?

2) The user logs in with username and password, adds products, closes the browser and reopens it without logging in with username and password. Question: Are the products in the shopping cart still there?

3) The user logs in with username and password, adds products, closes the browser, then opens it again, logs in with username and password. Question: Are the items in the shopping cart still there?

4) The user logs in with username and password, adds products, closes the browser, opens the browser from his hometown, and logs in with username and password. Question: Are the items in the shopping cart still there?

The above four questions are all based on JD.com, so guess what the result is?
1) In
2) No more
3) In
4) In

If you can guess the answer, then you are really great, so about these four How is the point implemented? (If there are friends who don’t agree with it, you can try it with JD.com)
Let’s explain the principle of the shopping cart, and finally talk about the specific code implementation.
1) User If you add products without logging in, the products at this time are added to the browser's cookies, so when you visit again (without logging in), the products are still in the cookies, so the products in the shopping cart still exist.
2 ) The user logs in and adds products. At this time, both the products in the cookie and the products selected by the user will be added to the shopping cart, and then the products in the cookie will be deleted. So when the user visits again (without logging in), the shopping cart in the cookie will be The product has been deleted, so the product in the shopping cart is no longer there.
3) The user logs in and adds the product. At this time, the product is added to the database for persistent storage. Open the login username and password again. The user The selected product must still exist, so the products in the shopping cart still exist.
4) Reason 3)

Here we also recommend downloading the source code resources: http:// www.php.cn/xiazai/learn/2130

The resources share video courseware and source code

The above is the detailed content of Boole Education ThinkPHP Mall practical video tutorial courseware source code sharing. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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