We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

fris on 10/01/08


Tagged

parse image file text thumb


Versions (?)


Who likes this?

1 person has marked this snippet as a favorite

basicmagic


using a text file to store image thumb and description


Published in: PHP 


store image, thumb, and description

  1. <?
  2. // format of image.jpg|thumb.jpg|description
  3. $filename = "images.txt";
  4. $images = array();
  5. $file=file($filename);
  6. foreach($file as $line)
  7. {
  8. $images = explode('|',$line);
  9. echo '
  10. <a href="'.$images[0].'">
  11. <img src="'.$images[1].'" alt="'.$images[2].'" />
  12. </a>';
  13. }
  14.  
  15. ?>

Report this snippet 

You need to login to post a comment.