PHP Home

Research & Documentation Home

Wed Aug 28 03:45:28 UTC 2024

Research Documentation

$_SERVER["SCRIPT_NAME"]
/php/research-documentation/index.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");
?>
</code></pre>