greeting = "hello world";
}
function display()
{
echo $this->greeting . "\n
";
}
function tabledisplay()
{
echo "
\n";
for ($i = 1; $i < 10; $i++)
{
$squarei = pow( $i, 2);
echo "| $i | $squarei |
\n";
}
echo "
\n";
} // table
function debug()
{
phpinfo();
} //debug
} // class
?>