Hi all
Do I have to define all variables in a class like
var $var;
I want to define a var in the constructer method that is just 'local' to that method like
function constructer() {
$local var="var for a DB query";
}
Does'nt work like that, is it possible)
Cheers
Nick