php contact form multi upload

Salam, adi contact form hazırlamışam, ona multi upload quşmaq istəyirəm. bunu necə edə bilərəm? ya da hazır multi upload dəstəyi olan contact form bilirsiniz?

Verilmiş cavablar və yazılan şərhlər (2 cavab var)

WalKing (2014-05-26 18:47:45)
[code] $name) { if ($_FILES['files']['error'][$f] == 4) { continue; // Skip file if any error found } if ($_FILES['files']['error'][$f] == 0) { if ($_FILES['files']['size'][$f] > $max_file_size) { $message[] = "$name is too large!."; continue; // Skip large files } elseif( ! in_array(pathinfo($name, PATHINFO_EXTENSION), $valid_formats) ){ $message[] = "$name is not a valid format"; continue; // Skip invalid file formats } else{ // No error found! Move uploaded files if(move_uploaded_file($_FILES["files"]["tmp_name"][$f], $path.$name)) { $count++; // Number of successfully uploaded files } } } } } ?> Multiple File Upload with PHP - Demo

Multiple File Upload with PHP

%s

\n", $msg); } } # success message if($count !=0){ printf("

%d files added successfully!

\n", $count); } ?>

Max file size 100kb, Valid formats jpg, png, gif



[/code]

E. Hacı (2014-05-26 17:36:48)
Google http://google.com/search?q=multi+upload+form+script+php