Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2. $dir = "./";
  3. foreach (glob ($dir."*", GLOB_ONLYDIR) as $pastas) {
  4. if (is_dir ($pastas)) {
  5. echo "Motorista: ";
  6. echo str_replace ( $dir,"",$pastas)." <img style='width: 20px; height: 20px;' src="icon-motorista.png"/> - <a href="$pastas">Olhar pasta</a><br />";
  7. echo "";
  8. }
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement