File "affichage_racine.php"
Full Path: /home/analogde/www/Python/Monsta-FTP-master/affichage_racine.php
File size: 541 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
// Définir l'URL de l'image
$imageUrl = 'https://analog-design.net/56526962_050_d2f0.jpg';
$imageUrl = '/56526962_050_d2f0.jpg';
$imagePath = $_SERVER['DOCUMENT_ROOT'] . '/zzz_08-07-2024_21_14_34____rev_1___.jpg';
echo $imagePath;
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Afficher une image</title>
</head>
<body>
<h1>Afficher une image</h1>
<img src="<?php echo $imagePath; ?>" alt="Image">
</body>
</html>