I want to upload multiple files and store them in a folder and get the path and store it in the database... Any good example you looked for doing multiple file upload...
Multiple files can be selected and then uploaded using the The sample php script that does the uploading:
Upload
The selected files are received as an array with
$_FILES['file']['name'][0] storing the name of first file. $_FILES['file']['name'][1] storing the name of second file. and so on.
$_FILES['file']['name'][0]
$_FILES['file']['name'][1]