I am trying to create a site where anonymous people can ask people (who have registered) questions about anything.
What really confuses me is how am I going to make the unanswered question appear on their account and then post to their page when answered?
I know the tables are kind of going to look like this
users -> id,uname,pass,salt,ipaddress
questions -> id,uid_from,uid_too,question,anon(bool),ipaddress
replies -> id, uid_from, qid, reply
something like that…
Would anyone like to help me out?
Thanks!