Possible Duplicate:
What’s the difference between :: (double colon) and -> (arrow) in PHP?
I have seen in examples across the web people using the Fat Free Framework both ways, ie:
echo $f3->get('varname');
vs.
echo F3::get('varname');
Obviously, both work. Which is better and why?