I am using the login bar provided by wix so it created a bunch of members for my website. However, my site is similar to eBay where it connects buyers and sellers. I want to have a ‘my listings page’ where it shows everything you have put for sale. How do I do this, because it seems like I need another database about who sold which item within the profile database. Let me know if it makes sense what I’m asking.
Make a second database ’For sale’ or something. Every for sale item have the ID added to a json object stored in one field associated with a member in the original database. Iterate through the for sale database to list out all item ID’s thag match the IDs you have in the json file.
Its called a one-to-many relationship and you could do some googling for that with mysql databases which is (pretty sure) what wix