Advertisement
Guest User

search_images.php

a guest
Oct 17th, 2014
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.19 KB | None | 0 0
  1.  
  2. <?php
  3. // Get the file name
  4. $filename = $_GET['filename'];
  5. // Find all the images
  6. $images = glob("images/file/path/*_{$filename}");
  7. // Return the images as json
  8. echo json_encode($images);
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement