Jump to content

get text from .txt file


simun

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.