mtb211 Posted December 8, 2008 Share Posted December 8, 2008 okay when i upload files to ftp folders I allow the user to login via http currently this is my code for the user.. very simple.. I was hoping to add a more professional look... maybe just a regular windows explorer look for the user, the thing is when I use dreamweaver with php there is no graphical view, any ideas? <? echo "Hier sind die Bereitgestellten Dateien<br><br>"; $action=opendir("./"); while($datei=readdir($action)){ if(!preg_match("!(\.|\..)$!", $datei)){ if ($datei!="index.php" && $datei!=".htaccess" && $datei!=".htpasswd" ) { echo " <a href=\"$datei\"> $datei</a><br>"; } } } ?> Link to comment https://forums.phpfreaks.com/topic/136037-solved-indexphp-for-ftp-folders-help/ Share on other sites More sharing options...
gevans Posted December 8, 2008 Share Posted December 8, 2008 It sounds like you just want to make a pretty html/css layout. I'd recommend looking into some design sites like deviant art As far as seeing the site while you work offline, look into an eay apache/mysql/php installation like xampp lite Link to comment https://forums.phpfreaks.com/topic/136037-solved-indexphp-for-ftp-folders-help/#findComment-709325 Share on other sites More sharing options...
mtb211 Posted December 8, 2008 Author Share Posted December 8, 2008 my boss needs it to be php, some programmer before me starting work in php... I could send you a link gavans if youd like to see our IE page Link to comment https://forums.phpfreaks.com/topic/136037-solved-indexphp-for-ftp-folders-help/#findComment-709347 Share on other sites More sharing options...
mtb211 Posted December 8, 2008 Author Share Posted December 8, 2008 I also could not find anything useful at deviant art.. where exactly do I need to go? Link to comment https://forums.phpfreaks.com/topic/136037-solved-indexphp-for-ftp-folders-help/#findComment-709387 Share on other sites More sharing options...
gevans Posted December 8, 2008 Share Posted December 8, 2008 That was just for ideas, I understand that you're coding in php, but you'll have to build the page using html/css. Your php wont change the way that the page looks (directly). Link to comment https://forums.phpfreaks.com/topic/136037-solved-indexphp-for-ftp-folders-help/#findComment-709498 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.