Steps in implementing hashtable in PHP and Mysql
问题 I am new to programming language and I am using PHP and mysql. I got an assignment to do a hashtables in php. What I need to do is, store items that a user collected and then display it. After do some research over the internet, I will do the following steps when implement the hashtable, please correct me if I am wrong: Set up the tables: -> Users Table: uid(int[5]), username(varchar[128]), item_id(int[8], items_id_hash(int[50]) -> Items Table: item_id(int[5]), item_name(varchar[128]), items