简体   繁体   中英

How would you go about creating a favourites list under a users profile?

I have just created a login for my website. I am now building a profile page with php and html. Im looking to create a website that has several items in the products page but would also like to enable each user who is logged in to be able to favorite items or add to a list which would then be displayed under their profile page. I'm not sure how to do any of that and was wondering where I would start in creating that list. I would appreciate some guidance on this.

Start by designing your database. User favorites are typical many-to-many relationship, so a table with user_id and product_id would work. You can then display particular user's favorites easily by reading from that table and joining your products table.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM