I have three files at my server:
foo.php
assets/bar.php
assets/qux.php
foo.php includes bar.php, and bar.php includes qux.php. The code of foo.php is shown below:
<?php
include_once("assets/bar.php");
?>
How should bar.php include qux.php? Should it use include("qux.php") or include("assets/qux.php")?