I keep getting an error. Here is some code.
Code:
<?php // PSystem.php
namespace PSystem;
?>
Yeah, that's all.

Code:
<?php // tester.php
include 'PSystem.php';
echo "Works";
?>
I keep getting this error.
Code:
PHP Parse error:  syntax error, unexpected T_STRING in C:\\Server\\Main\\Includes\\PSystem.php on line 2
Is this how you are supposed to be loading namespaces, or is this just some weird error?