Is it possible to autoload functions?
What I have is I have written functions distributed over different files named after the function name, so what I need is to au
Use:
include("path");
or
require_once("path");
References:
http://php.net/manual/en/function.include.php
http://php.net/manual/en/function.require-once.php