greeting = "hello world"; } function display() { echo $this->greeting . "\n

"; } function tabledisplay() { echo "\n"; for ($i = 1; $i < 10; $i++) { $squarei = pow( $i, 2); echo "\n"; } echo "
$i$squarei
\n"; } // table function debug() { phpinfo(); } //debug } // class ?>