<?php
echo "OK : FYI White Spaces are ignored : Goooood" ;
class myclass
{
public function Test($test)
{
echo " <br/> <font style='color:red;'>
Do Something <br/>".$test."</font>";
}
}
$obj1 = new myclass();
echo "<br/> <font style='color:Green;'>
Object 1 created</font> <br/>";
$obj1->Test("calling back");
echo "<br/>Object1 Successfully instantiated <br/>";
$obj2 = new myclass();
echo "<br/> <font style='color:Green;'>
Object 2 created</font> <br/>";
$obj2->Test("More Calls");
echo "<br/>Object2 Successfully instantiated <br/>";
?>