File "view_image01.php"
Full Path: /home/analogde/www/Administratif/FTP/Monsta-FTP-master/view_image01.php
File size: 370 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
//echo " View image ";
$file = '93522827_016_5bab.jpg';
header('Content-Type: image/jpeg');
header('Content-Length: ' . filesize($file));
echo file_get_contents($file);
/* $remoteImage = "http://www.example.com/gifs/logo.gif";
$imginfo = getimagesize($remoteImage);
header("Content-type: {$imginfo['mime']}");
readfile($remoteImage);*/
?>