I'm trying to make an upload / download system to my sites..
I already got the upload working, the files goes to ..upload/ directory but now I'm trying to make a php code that could download the files from that directory.. help? I've googled for 5hours now so don't tell me to google..
So far I've only managed to show the file names in the list..
I already got the upload working, the files goes to ..upload/ directory but now I'm trying to make a php code that could download the files from that directory.. help? I've googled for 5hours now so don't tell me to google..
So far I've only managed to show the file names in the list..
<?php
if ($handle = opendir('upload/')) {
echo "Directory handle: $handle\n";
echo "Files:\n";
closedir($handle);
}
?>