Salve a tutti,
avrei questo problemino da risolvere, nel creare la cartella in md5 vorrei aggiungere anche la data, quindi nel caso avere 01-01-2008_A5BC7

Al momento sto usando questo


Codice PHP:
$append http_build_query(array(     
session_name()    => session_id(), 
'batch_id'        => substr(strtoupper(md5(rand(0999999999))), 25)
), 
null'&'); 


Codice PHP:
session_name('SID'); 
session_start();  
$batch_id $_GET['batch_id'];

umask(0);
if(!
file_exists($batch_id)) mkdir($batch_id); 


grazie, un saluto a tutti!



Peter