PHP - Files from folder on a webpage
#3

Quote:
Originally Posted by viKKmaN
Посмотреть сообщение
Try:
Код:
echo "<u><a href=\"uploads/'.$file.'\">$file</a></u><br />";
Or:
Код:
echo "<u><a href=\"'.$file.'\">$file</a></u><br />";
ah, so you mean:

Код:
<?php  
if ($handle = opendir('uploads')) {  
    while (false !== ($file = readdir($handle))) {   
        if ($file != "." && $file != "..") {   
            echo "<u><a href=\"'.$file.'\">$file</a></u><br />";  
        }   
    }  
    closedir($handle);   
}  
?>
hmmm, that doesn't work too, thanks anyway!

-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: 4 Guest(s)