<?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>