If you have an Apache server
<?php include_once($_SERVER['DOCUMENT_ROOT'] . "/assets/page_assets.php"); ?>
"/assets/page_assets.php" means from the root of the disk , not from the root folder of the server. If you are talking about some other beginning directory , then define the physical path (the path in the server file system, not the web path) to it as a separate constant / variable and add it to the included path, as shown above.
Cheery
source share