I am sure there is an easy way to do this, but it escapes me...
I need to find a way to retrieve multiple variables from a class/function... for example...
class class1 {
var var1;
var var2;
var var3;
function function1 () {
$this->$var1 = "a";
$this->$var2 = "b";
$this->$var3 = "c";
}
}
if i create an array i can only get the first variable out of it for sum reason.. my ignorance has overcome me and is playing tricks with my php-kungfu..... now i need to beable to call each of those variables outside of the class.... how do i do it... thank you in advance....
waits