$i = 1;
$cols = array();
$data = array();
// now let's move the file to its final and allocate it with the new filename
foreach($active_keys as $key)
{
@move_uploaded_file($_FILES[$fieldname]['tmp_name'][$key], $uploadFilename[$key])
or error('receiving directory insuffiecient permission', $uploadForm);
$cols[] = "image" . $i++;
$data[] = basename($uploadFilename[$key]);
}
$cols = array_map ('mysql_real_escape_string', $cols);
$data= array_map ('mysql_real_escape_string', $data);
$query = 'INSERT INTO `imloop` (' . implode(', ', $cols) . ') VALUES ("' . implode('", "', $data) . '")';
mysql_query($query) or exit($query . '<br />' . mysql_error());
INSERT INTO `imloop` (`id`, `image1`, `image2`, `image3`, `image4`, `image5`, `image6`) VALUES (1, '1352903903-1.jpg', 1352903903, 1352903903, 1352903903, 1352903903, 1352903903);
or
INSERT INTO `imloop` (`id`, `image1`, `image2`, `image3`, `image4`, `image5`, `image6`) VALUES (1, '1352903903-1.jpg', 1352903903, 1352903903, 1352903903, 1352903903, 1352903903), // here I tried to upload 6 different images (2, '1352904073-6.jpg', 1352904073, 0, 0, 0, 0), // here I tried to upload 2 different images (3, '1352904279-1.jpg', 1352904279, 1352904279, 0, 0, 0), // here I tried to upload 3 different images (4, '1352904587-1.jpg', 1352904587, 1352904587, 0, 0, 0);
why it locate just first image I am putting in and repeat it to the `image2`, `image3`, `image4`, `image5`, `image6` .
and doesn't show others I am adding.

New Topic/Question
Reply



MultiQuote




|