Advertisement
contatowellington

Untitled

Sep 21st, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. <form class="container-audio" id="form1" name="form1" method="get" action="index.php">
  2. <label>
  3. <input name="id" type="hidden" id="id" value="<?php echo $_SESSION['kt_login_id']; ?>" />
  4. <select name="som" id="som">
  5. <option value="">Selecione um playlist</option>
  6. <?php
  7. $pasta = 'audio/';
  8. rsort ($pasta);
  9.  
  10. if(is_dir($pasta))
  11. {
  12. $diretorio = dir($pasta);
  13.  
  14.  
  15.  
  16. while(($arquivo = $diretorio->read()) !== false)
  17. {
  18. $stringCorrigida = str_replace('-', '&nbsp;', $arquivo);
  19.  
  20. echo '<option value='.$arquivo.'>'.$stringCorrigida.'</option><br />';
  21. }
  22. $diretorio->close();
  23. }
  24. else
  25. {
  26. echo 'A pasta não existe.';
  27. }
  28. ?>
  29. </select>
  30. </label>
  31. <label><br />
  32.  
  33. <input type="submit" name="button" id="button" value="Vamos lá!" />
  34. </label>
  35. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement