PHP - Files from folder on a webpage
#1

Edit: Thanks guys (Kwarde) it is working now!

Hey guys,

I'm using the following PHP script:

Код:
<?php  
if ($handle = opendir('uploads')) {  
    while (false !== ($file = readdir($handle))) {   
        if ($file != "." && $file != "..") {   
            echo "<u><a href=\"$file\">$file</a></u><br />";   
        }   
    }  
    closedir($handle);   
}  
?>
This script will show the files from the directory called: 'uploads' on a webpage. But now I have a problem. When I click a file in the list, Internet says: Not found. But when I go to the path of the file (www.blahblah.com/upload/blahblah.jpg) Then it DOES work :S

Does anybody know how I can edit this script so it will download the file whem you click it?

Thanks!

-J
Reply


Messages In This Thread
PHP - Files from folder on a webpage - by Jantjuh - 21.02.2011, 15:27
Re: PHP - Files from folder on a webpage - by viKKmaN - 21.02.2011, 15:34
Re: PHP - Files from folder on a webpage - by Jantjuh - 21.02.2011, 15:42
Re: PHP - Files from folder on a webpage - by viKKmaN - 21.02.2011, 15:45
Re: PHP - Files from folder on a webpage - by Jantjuh - 21.02.2011, 15:49
Re: PHP - Files from folder on a webpage - by saiberfun - 21.02.2011, 15:54
Re: PHP - Files from folder on a webpage - by Jantjuh - 21.02.2011, 15:58
Re: PHP - Files from folder on a webpage - by saiberfun - 21.02.2011, 15:59
Re: PHP - Files from folder on a webpage - by Jantjuh - 21.02.2011, 16:13
Re: PHP - Files from folder on a webpage - by JaTochNietDan - 21.02.2011, 17:48

Forum Jump:


Users browsing this thread: 3 Guest(s)