Class Php

    class myPHP4Class {
        var $my_variable;
        function my_method($param) {
            echo "my_method($param)!\n";
            echo "my variable is: ";
            echo "{$this->my_variable}\n";
        }
    }
     $myinstance = new myPHP4Class();
     $anotherinstance = new myPHP4Class();
?>