class.upload.php is a powerful and mature PHP class to manage uploaded files, and manipulate images in many ways. The script is available under a GPL license.
include('class.upload.php');
$files = array();
foreach ($_FILES['my_field'] as $k => $l) {
foreach ($l as $i => $v) {
if (!array_key_exists($i, $files))
$files[$i] = array();
$files[$i][$k] = $v;
}
}
foreach ($files as $file) {
$handle = new Upload($file);
if ($handle->uploaded) {
$handle->Process("./");
if ($handle->processed) {
// it is only here you know that your upload has succeeded
// so you can insert the filename in your database here
$sql = "INSERT INTO photos (filename) ";
$sql .= "VALUES ('".mysql_real_escape_string($handle->file_dst_pathname)."')";
$x = mysql_query($sql) or die(mysql_error());
} else {
echo 'Error: ' . $handle->error;
}
} else {
echo 'Error: ' . $handle->error;
}
unset($handle);
}
Is that what you mean?
ps. I dont mind making a small donation for your time, providing we get this thing to work, it has me confused!