<!DOCTYPE html>
<html>
<body>
<?php
class greeting {
public static function welcome() {
echo "Hello World!";
}
class SomeOtherClass {
public function message() {
greeting::welcome();
?>
</body>
</html>