php file for image load

Solutions on MaxInterview for php file for image load by the best coders in the world

showing results for - "php file for image load"
Valery
05 Jul 2016
1$image = 'path/to/image.jpg';
2header('Content-Type: image/jpeg');
3readfile($image);