Re: [PHP] Some CLASS file help, should be a quick answer...

2005-07-11 Thread Richard Lynch
On Mon, July 11, 2005 4:05 pm, Matt Babineau said: > Ok so I set a variable at the top of my class definition > > var $tmp; > < bunch of functions> > > Function $func1() { You don't really have a $ before the function name, right?... > > $n = $this->result_from_another_function($var1

[PHP] Some CLASS file help, should be a quick answer...

2005-07-11 Thread Matt Babineau
Ok so I set a variable at the top of my class definition var $tmp; < bunch of functions> Function $func1() { $n = $this->result_from_another_function($var1, $var2, $var3); // this function returns an ARRAY //print_r($n); $this->tmp = $n; } When I try to set $thi