the '->' (wherever you see that)... is just calling a function from a current class object...
sooooo
$class->function('something');
would call a function from WITHIN the class object '$class'
soo anyways..
$class = new something;
$class->test();
class something {
function test($name = 'Test') {
echo $name;
}}
That would print 'test', very small example, but thats what it would do... hehe, well you can also use a parameter within the 'test' function call, and it would print out whatever you put there, but this is just a very primitive example of OOP in PHP... I think I am getting a bit rusty...
(looks at his nails)