I was under the impression a local php script could still read them even thought they are blocked from the outside world.
Is this true as i can't get it working??
N.B using this to load image:
Code: Select all
<?php
Header("Content-type: image/jpg");
$image = imagecreatefromjpeg('pictures/1st social/social 001.jpg');
imagejpeg ($image);
imagedestroy ($image);
?>