Hi Folks,
For example...
class MyClass
{
function MyClass()
{
$this = mysql_fetch_object($q);
}
function another()
{
return;
}
}
$blah = new MyClass();
I want to be able to use $blah->db_field; and also keep any other functions in the class
Any ideas?