$_SERVER["SCRIPT_NAME"]
/php/research-documentation/01-php-history.php
print_r($_GET)
Array
(
)
print_r($_POST)
Array
(
)
print_r($_SESSION)
Array
(
)
print_r($_FILES)
Array
(
)
<?php
$tools = true; // Robert's Custom Variable (Do Not Use)
include("{$_SERVER["DOCUMENT_ROOT"]}/php/includes/header.php");
?>
<main>
<h2><?= $folder_name ?>
<span><?= $file_name; ?></span>
</h2>
<h2>The History of PHP</h2>
</main>
<?php
include("{$_SERVER["DOCUMENT_ROOT"]}/php/includes/sidebar.php");
include("{$_SERVER["DOCUMENT_ROOT"]}/php/includes/footer.php");
?>