How to build a relationship between a 'user' and 'his comment'? – Phpmyadmin
I'm currently coding a blog to get experience with php(I've made an MVC-Framework), so I am still new to this. I have two tables important for this question: user(id, username, password, registrated) comments(id, content, post_id, comment_author, date, editedAt, editedBy) In…