[PHP-DEV] CVS Account Request: andrew

2003-03-02 Thread Andrew Heebner
Helping with quality assurance, and adding/contributing to PEAR/PECL

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] Re: new construct

2003-02-25 Thread Andrew Heebner
__construct is the new method of defining a constructor, but the 'bug' you
suspect is not a bug.  The parser will search for a function of the same
name in the class as the constructor for backwards compatibility with Older
scripts, etc...

This is done by design, not by 'bugginess'.

~ Andrew Heebner



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP-DEV] Re: new construct

2003-02-25 Thread Andrew Heebner
Perhaps i may be mistaken, but it seems logical to search for the old-style
constructor first in order to be backwards compatible with old-style
scripts.  Putting __construct in old style classes would yield a classname
of  '__construct', an ugly and unlikely name for a class.  Seeing as A::A()
would be much nicer, i can see the logic behind parsing the old-style first,
rather than the new-style.

That's just my two cents, feel free to correct me otherwise..

~ Andrew Heebner


 __construct is the new method of defining a constructor, but
 the 'bug' you suspect is not a bug.  The parser will search
 for a function of the same name in the class as the
 constructor for backwards compatibility with Older scripts, etc...

 But shouldn't __construct() be searched for and used prior to the
 old-style constructor? Intuitively it seems it should.

 John




-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP-DEV] Re: CVS Account Request

2002-04-28 Thread Andrew Heebner

I did fill it out, it either didn't process, or something or other
happened... will try again...

~ Andrew Heebner

Jim Winstead [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Andrew Heebner [EMAIL PROTECTED] wrote:
  Would like to contribute and help with existing PEAR modules

 you need to fill out the form at

 http://www.php.net/cvs-php.php

 jim



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DEV] CVS Account Request

2002-04-27 Thread Andrew Heebner

Would like to contribute and help with existing PEAR modules

~ Andrew Heebner, EvilWalrus.com



-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-DEV] Re: Javascript array

2002-01-19 Thread Andrew Heebner

[EMAIL PROTECTED] (Beta) wrote in
[EMAIL PROTECTED]:">news:[EMAIL PROTECTED]: 

 Hi, I have a problem sending variable value from JAVASCRIPT to PHP
 exactly i want when i press Submit button the javascript array to be
 posted in PHP, i don;t want to use any HTML form, so sending values
 from forms, i want the values to be posted directly in PHP so i can
 use those values; 
 
 thanks
  Beta
 

PHP is a dynamic embedded language, whereas Javascipt is a client side 
hardcoded language.  It's nearly impossible to have PHP variables be input 
to Javascript variables without psoting to the page.

~ Andrew Heebner, EvilWalrus.com

-- 
PHP Development Mailing List http://www.php.net/
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]