<?php
class showSomething {
function start () {
include("form_template.php");
}
function showForm ($show)
{
if ($show == "yes")
{
display_form("yes");
}
else
{
echo "Unabled comments for this page";
}
}
function showComments($limit)
{
if ($limit != 0)
{
display_comments($limit);
}
else
{
display_comments(0);
}
}
}
?>
|