Re: [PHP-WIN] Re: PHP CODE ERROR?

2003-11-17 Thread Piotr Pluciennik
This is exactly what I've told you in my last post... :-) Piotr Rocco CAstoro wrote: > NO, it is all because I exited the Class Properties before I defined all the > class functions, the first } shuld be the last } > "Bob Harris" <[EMAIL PROTECTED]> wrote in message > news:[EMAIL PROTECTED] > > C

[PHP-WIN] Re: PHP CODE ERROR?

2003-11-17 Thread Rocco CAstoro
NO, it is all because I exited the Class Properties before I defined all the class functions, the first } shuld be the last } "Bob Harris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Could it be related to the fact the none of the functions being called as > "$test->func_call()" a

Re: [PHP-WIN] PHP CODE ERROR?

2003-11-17 Thread Piotr Pluciennik
You've not defined any method for your class. Read comments with ** below. HTH Piotr // Defining the Class's Properties --- class Table { var $table_array = array(); var $headers = array(); var $cols; } * here you've ended your class definition * so below it's not a co

[PHP-WIN] Re: PHP CODE ERROR?

2003-11-17 Thread Bob Harris
Could it be related to the fact the none of the functions being called as "$test->func_call()" are actually defined as being a member of your class "Table"? Thus addrow() might exist but $test->addrow() does not. "Rocco Castoro" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Can A

php-windows Digest 17 Nov 2003 12:23:07 -0000 Issue 2004

2003-11-17 Thread php-windows-digest-help
php-windows Digest 17 Nov 2003 12:23:07 - Issue 2004 Topics (messages 22122 through 22122): Re: PHP CODE ERROR? 22122 by: Bob Harris Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To p

Re: [PHP-WIN] PHP CODE ERROR?

2003-11-17 Thread Bob Harris
Could it be related to the fact the none of the functions being called as "$test->func_call()" are actually defined as being a member of your class "Table"? Thus addrow() might exist but $test->addrow() does not. "B.A.T. Svensson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > htt