I am fairly new to PHP. And I really don't understand why I can not call a function.
class test {
public function sayHi($name, $age)
{
echo $name . $age;
}
}
When trying to call sayHi
it does not show up.
Thank you for any input