Untitled

 avatar
unknown
plain_text
8 days ago
165 B
3
Indexable
<?php
$contenu = file_get_contents('index.php');
if ($contenu !== false) {
    echo "<pre>" . htmlspecialchars($contenu) . "</pre>";
} else {
    echo "Errer";
}
?>
Leave a Comment