simun Posted July 16, 2009 Share Posted July 16, 2009 i have a problem with reading text from .txt file, here is my code <?php if (is_array($object->gallery->photos)) { foreach($object->gallery->photos as $photo) { $myFile = "../files/naslovi/" . $object->id . "/" . $photo['filename'] . ".txt"; $fh = fopen($myFile, 'r'); $theData = fread($fh, 500); fclose($fh); echo $theData; ?> <a class="lightbox" title="<?= substr($photo['filename'], 0, -4);?>" href="/images/cache/objects/<?=$object->id?>/<?=$photo['filename']?>/w-800.jpg"><? ?><img alt="" src="/images/cache/objects/<?=$object->id?>/<?=$photo['filename']?>/h-98.jpg" /><? ?></a> <?php } } ?> i get this error on my page: Warning: fopen() [function.fopen]: Unable to access ../files/naslovi/1/M-Bazen-2.JPG.txt in /home/mm-desig/public_html/new/pages/object_galerija.details.php on line 105 Warning: fopen(../files/naslovi/1/M-Bazen-2.JPG.txt) [function.fopen]: failed to open stream: No such file or directory in /home/mm-desig/public_html/new/pages/object_galerija.details.php on line 105 Warning: fread(): supplied argument is not a valid stream resource in /home/mm-desig/public_html/new/pages/object_galerija.details.php on line 106 Warning: fclose(): supplied argument is not a valid stream resource in /home/mm-desig/public_html/new/pages/object_galerija.details.php on line 107 Please help Link to comment https://forums.phpfreaks.com/topic/166186-get-text-from-txt-file/ Share on other sites More sharing options...
ignace Posted July 16, 2009 Share Posted July 16, 2009 http://be2.php.net/file_get_contents Link to comment https://forums.phpfreaks.com/topic/166186-get-text-from-txt-file/#findComment-876357 Share on other sites More sharing options...
PFMaBiSmAd Posted July 16, 2009 Share Posted July 16, 2009 The error tells you that the file or directory does not exist - fopen(../files/naslovi/1/M-Bazen-2.JPG.txt) [function.fopen]: failed to open stream: No such file or directory Have you checked if that is the correct file name and is that the correct path (relative to the current script)? Link to comment https://forums.phpfreaks.com/topic/166186-get-text-from-txt-file/#findComment-876475 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.