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

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.