Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sistematico/5f34e3d8036f90ea3dfd35f6f4151329 to your computer and use it in GitHub Desktop.
Save sistematico/5f34e3d8036f90ea3dfd35f6f4151329 to your computer and use it in GitHub Desktop.
Código PHP para listar subpastas com links
<?php
if ($diretorio = opendir("./"))
{
while(false !== ($pasta = readdir($diretorio)))
{
if(is_dir($pasta) and ($pasta != ".") and ($pasta != ".."))
{
echo "<a href='$pasta'>$pasta</a><br>";
}
}
closedir($diretorio);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment