Introduction
This article will show you how to use a generic comments module which is implemented using PHP 4.0, MySQL, and AJAX.
This module is now running here; you can see it in every project review page.
Here, the user will enter his information and his comments:
When the user clicks on the submit comment button, the comment will be submitted without any page refresh, and the new comment will appear in the page.
Installing database scripts
The database is located in the source code folder in sourcecode/sql/script.sql; just open your MySQL client, and run it to install the database.
How can I add it to my code
- Include the files of the comments module in your application folder.
- In your code, include the comments.php file to be able to show the comments module.
- The comments will show specific comments of every page, according to the ForiegnID which identifies the page which will show the comment (i.e., the ForiegnID of an article can be "A"+$i where $i is the ID of the article in your application database; so, you can use the same module in many pages (articles, news, reviews,..))
<?php
$i =0;
$ForeignID = "comment-$i" ;
require("includes/comments.php");?>