Files
Camilou.fr/index.php
T
alois 371737a45e
Deploy PHP / deploy (push) Successful in 3s
créer un index.php de test
2026-05-21 16:20:51 +00:00

28 lines
799 B
PHP

<?php
$host = gethostname();
$php_version = phpversion();
$date = date('d/m/Y H:i:s');
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Sushi — Test</title>
<style>
body { font-family: sans-serif; max-width: 600px; margin: 4rem auto; padding: 1rem; }
.ok { color: green; }
table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
td { padding: 8px; border-bottom: 1px solid #eee; }
td:first-child { font-weight: bold; color: #555; }
</style>
</head>
<body>
<h1>🍣 Sushi</h1>
<p class="ok">✅ PHP fonctionne correctement</p>
<table>
<tr><td>Version PHP</td><td><?= $php_version ?></td></tr>
<tr><td>Hôte</td><td><?= $host ?></td></tr>
<tr><td>Date serveur</td><td><?= $date ?></td></tr>
</table>
</body>
</html>