I have some PDF files in public_html/site.com/pdf
but in my index files is located in public_html/site.com/
I would like to use the glob()
function to iterate through all the pdf files located In the pdf/
folder. The problem is that I am not getting any result.
Here is that I tried.
# public_html/index.php
<?php
foreach (glob("pdf/*.pdf") as $filename) {
echo "$filename <br/>";
}
?>