在数组中保存标记的书名

时间:2017-04-24 17:07:56

标签: javascript php jquery arrays cookies

所以我有一个PHP脚本,连接到有很多电子书的数据库(标题,作者等) 我想添加一个按钮,让您将其标记为“感兴趣”并稍后在其他页面上显示它们。

我不希望从你那里得到任何代码,虽然一些关于从哪里开始的提示会很好。 (这是一个练习,我不知道你可能需要哪部分代码)

这些书不应该被标记为永久性的。所以我不想使用额外的数据库。 我想在单击按钮时向数组添加值(例如:标题),然后将其存储在会话或cookie中。

例如,当您按下按钮时,它会将标题添加到一个数组中,该数组将保存在会话或cookie中,稍后会显示在其他页面上。

我感谢你的每一次帮助。

1 个答案:

答案 0 :(得分:0)

When a user clicks an "interested" button, you can use AJAX to submit it to a PHP script that'll add the book IDs to an Array stored in a Session. And whenever you want to retrieve the books the user is interested in, you just retrieve the books from the database using the IDs that were stored earlier in the $_SESSION variable.