Closed chmac closed 11 years ago
Well, the truth is: php wants () for functions but require_once
is language construction, same as echo
.
So you can write echo "hey!";
but can't print "boom!";
Semicolons is required part though, you're right
Understand it's not required, but it is "normal" in my experience...
Although, having said that, the docs omit the brackets, so maybe I'm mistaken... http://www.php.net/manual/en/function.include.php
The code was missing a couple of semi-colons and PHP probably wants brackets where other languages might not.