Skip to content

Instantly share code, notes, and snippets.

View th4s1s's full-sized avatar

Lio th4s1s

View GitHub Profile
<?php
$filename = 'index.php';
$fileContent = file_get_contents($filename);
if ($fileContent !== false) {
echo $fileContent;
} else {
echo "Failed to read the file.";
}
?>