I\'m currently trying to fetch the medoo framework so that I can begin easily retrieving data from my MySQL database... and for some reason it doesn\'t work!
here\'s
You can't have require_once inside a class without a function. That's the main reason.
require_once
Try putting the require_once in the construct.
construct
To be exact :
class foo { require_once('bar.php'); }
will throw an error.