achso... $nummer ist der zufallsname der vergeben wird mit
und $hallo der dateityp, sprich .jpg oder .gif bei mir
PHP-Code:
$allow = "0123456789abcdefghijklmnopqrstufwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
srand((double)microtime()*1000000);
for($i=0; $i<10; $i++) {
$nummer .= $allow[rand()%strlen($allow)];
}
Kommentar