PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Viktor   Universal comment module   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Sample
Class: Universal comment module
Generic site comments system
Author: By
Last change:
Date: 15 years ago
Size: 642 bytes
 

Contents

Class file image Download
<?php
/*
    by ivi.
    www: newsroot.net
    E-mail: ivi.viktor@gmail.com
    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">&copy;NewsRoot.NET</a></center>
</body>
</html>