DaffyM
0
Q:

php self

<form name="form1" method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" >

0
class X {
    private $non_static_member = 1;
    private static $static_member = 2;

    function __construct() {
        echo $this->non_static_member . ' '
           . self::$static_member;
    }
}

new X();
0

New to Communities?

Join the community