scusami forse è l'orario un pò avanzato
ma come si traduce il tuo script nel mio file php?
Codice PHP:
<?php
//create the directory if doesn't exists (should have write permissons)
if(!is_dir("./folder")) mkdir("./folder", 0755);
//move the uploaded file
move_uploaded_file($_FILES['Filedata']['tmp_name']. md5(time()), "./folder/".$_FILES['Filedata']['name']. md5(time()));
chmod("./folder/".$_FILES['Filedata']['name']. md5(time()), 0777);
?>
così va bene?
ma che significa md5(time())?cosa fa precisamente
cmq grazie mille