I've seen include statements done two ways:
<?php include "../filename.php"; ?>
and
<?php include("../filename.php"); ?>
What's the difference between the two?
include being a language construct not a function the () are optional.
Thanks!