<?php
require_once 'theme/index.php';
Header::create()->AddLink();
?>
<?php
<?php
Class Header
{
public static function create()
{
echo file_get_contents('theme/header.html');
}
public function AddLink($text,$url)
{
echo ''.$text.'';
}
}
?>
Fatal error: Call to a member function AddLink() on a non-object in .../index.php on line 3