Universal comment system for Your site. Version # 1.0 www: newsroot.net e-mail: hide@address.com icq# 4405730 Instalation: For testing: #1 Copy files to your site in your folder like âcommentâ. #2 Create database and execute sql code in db.sql #3 Change configuration in conf.php For integration: #1 Copy files to your site in your folder like âcommentâ. #2 Create database and execute sql code in db.sql #3 Change configuration in conf.php #4 Replace function in API.class.php Functions: Database functions: db_getAll($sql) â extracts all records from database. db_getOne($sql) â extracts one record from database. db_query($sql) â execute database query getLastId() -- return last insert id User functions getUserId() â get user id for logged user. getUserName($id) â get Username for user with userid == $id Insert code into your template or php file $id = "456RDFTHJBF"; $comment1 = new Comment($id); echo $comment1->getComments(); Where: $id â unique id number or string for Your content (âImageâ,âMessageâ,âArticleâ) For sample: $id = âarticle_63675683â; $id = âimage_6735â;