[PHP-DEV] add SMTP authentication to php.mail() function

2003-03-18 Thread John M. Calvert
Hello, I'm interested to add SMTP authentication to the php.mail() function. Is this something that the PHP dev community would endorse? I'm told that as a newbie contributor I wouldn't have direct access to the CVS, that I'd have to post my diffs to this list or get an existing developer to sponso

Re: [PHP-DEV] Pb : access control

2003-03-18 Thread Fabrice Le Coz
here a code to test private variables name = "foo2"; } } class baz extends foo { function show() { echo "> name : $this->name \n"; } } $test = new baz(); $test->show(); echo " name : $test->name \n"; ?> this code expose the variable foo2 in the baz object (method show) which