1<form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" >
2
3
1class X {
2 private $non_static_member = 1;
3 private static $static_member = 2;
4
5 function __construct() {
6 echo $this->non_static_member . ' '
7 . self::$static_member;
8 }
9}
10
11new X();