| 
<?php
/*
 by ivi.
 www: newsroot.net
 E-mail: [email protected]
 ICQ# 4405730
 */
 require_once("Comment.class.php");
 
 ?>
 <html>
 <head>
 <title>Comment System 1.0</title>
 
 <meta http-equiv="content-type" content="text/html; charset=utf-8">
 <meta http-equiv="content-language" content="en">
 <link href="style.css" rel="stylesheet" type="text/css">
 <script language="JavaScript" src="prototype.js"></script>
 </head>
 <body>
 
 <?php
 $id  = "456RDFTHJBF";
 $comment1  = new Comment($id);
 echo $comment1->getComments();
 
 ?>
 <br />
 <center> <a href="http://newsroot.net">©NewsRoot.NET</a></center>
 </body>
 </html>
 |