Ive recently seen people using functions like so:
public function A()
{
//function here
}
private function B()
{
//function here
}
rather than just
function C()
{
//function here
}
So what does putting private or public infront of function do?
