How to Get File into Folder using PHP

  1. <?php  
  2. $files=glob("images/*.*"); // if you get specific file change file extension eg : glob("file path /*.jpg") .  
  3. print_r($files);  
  4. ?>  
  5. <br>  
  6. <select id="count_number">  
  7. <option value="">Choose</option>  
  8. <?php  

  9. foreach($files as $filename)
  10. {  
  11.       $arr = explode("/",$filename);  
  12.       ?>  
  13.       <option value=""><?php echo $arr[1]; ?></option>  
  14.       <?php  
  15. }  
  16. ?>