Re: [PHP-DEV] no construct called

2003-02-22 Thread michel 'ziobudda' morelli
Il sab, 2003-02-22 alle 14:57, michel 'ziobudda' morelli ha scritto: > Hi, I have this code: Hi again. In my script I have noticed that if I write: protected $protetta = "Io sono protetta"; the function function ex2() { echo "sono in ex2()\n"; echo "\$Protetta: ".$this->prot

[PHP-DEV] no construct called

2003-02-22 Thread michel 'ziobudda' morelli
Hi, I have this code: \n"; } */ function __construct() { echo "sono in esempio::__construct()\n"; $this->protetta = "I'm protect"; } function exe() { echo "sono in exe()\n"; echo $this->protetta; } } class exe extends esempio {