I am trying to work with namespaces in Fat Free. Everything works fine, but when i ad the namespace, i get this:
Internal Server Error
Fatal error: Class 'Gadgets\iPad' not found
here is my code:
index.php
$f3=require('lib/base.php');
$f3->set('AUTOLOAD','ui/');
$f3->route('GET /', function(){
$obj=new Gadgets\iPad;
echo $obj->hallo('cat');
});
$f3->run();
ui/iPad.php
namespace Gadgets;
class iPad {
function hallo($word){ echo $word;}}
Thank you