+ 1
How can I add comment system in a website?
I want to add comment system in a website, so how can I do it.
4 Antworten
+ 4
Use wordpress
+ 3
make a table with following relations.
comment_id, post_id, user_id,comment_text,date time.
fetch comments by post id on specific post. order by date time. fetch user details such as name by joining user table.
if you can't do it use Facebook comments api. make an app on fb integrate in webpages by reading fb comments api. much easy
+ 2
Up up. I'm also need it 😁