I am trying to include files in php, but everytime, its throwing me this error:
Warning: include_once(authorizationUtils.php) [function.include-once]: failed to open stream: No such file or directory in C:\xampp\htdocs\pspace\includes\header.php on line 13
Warning: include_once() [function.include]: Failed opening 'authorizationUtils.php' for inclusion (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\pspace\includes\header.php on line 13
Fatal error: Class 'AuthorizationUtils' not found in C:\xampp\htdocs\pspace\includes\header.php on line 15
unable to find resources on this online. whether i should configure my xampp in any way, or do what, not sure.
include_once()creates an error, read the manual page of that function: php.net/include_once - Then double check you're using the right input values (like the filename and the php configuration of the include path in this case) and try again.