"Sébastien ROZIER" <[EMAIL PROTECTED]> wrote:
> when I use this syntax:
> champs[0] is a string, which is the name of an HTML form variable.
>
> class test
>    {
>        var champs;

When initiating a variable you need to prefix it with "$". So the line above
should be:

var $champs;

If it's an array you may want to initiate it like:

var $champs = array();

I don't have the time to analyze your code in full right now, but hopefully
this will get you started.

--
Steve Werby
COO
24-7 Computer Services, LLC
Tel: 804.817.2470
http://www.247computing.com/


-- 
PHP General 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]

Reply via email to