Skip to main content
Topic: how to create blog comments (Read 2900 times) previous topic - next topic

how to create blog comments

how to create blog comments

please any one give me step by step tutorials

Re: how to create blog comments

Reply #1
Creating a blog comment has to be a custom code feature which PHPRad provide such feature.
Maybe if you provide more detail or where you are stuck then we can help

Regards

 

Re: how to create blog comments

Reply #2
You will need to have two tables -- Blog Articles and Blog Comments. Each Article will have ID as Primary Key and each Blog Comment will have CommentID as well as Article ID along with the comment text itself.

Inner Join on Article ID between Blog Article and Blog Comments with one to many relation. You may then use Page Parts to show the comments for a Article, tied over :id.

I hope this helps.