I am working on a website where users can post text, and others can reply, so essentially a forum. I need the replies to be nested (up to a set point) and callable from a query string (each nest of replies needs to be correlated to a specific and dynamic query string). For now I am using local storage, but will eventually need to move to a database.
The main problems that I am encountering are the nesting and making it callable from a query string. It might be the way that I'm searching, but I've not found anyone talking about this. Is there even a way to do this? If not, how else should I go about doing it?