I've found many time the use of '->': Here is a few examples:
$snoopy = new Snoopy;
$snoopy->fetchtext("http://www.php.net/");
print $snoopy->results;
$snoopy->submit($submit_url,$submit_vars);
$this->mark->SetType(MARK_CIRCLE); $this->mark->SetColor($this->color);
What does mean these '->'?
How should I use them?
Or do you know where could I find and article or tutorial explaining the use of this element?
Thanks for your help