I have tested it having some changes and it locate image (to db) as I needed but the problem is now shown bellow :
Code:
$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());
Code:
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.
Last edited by streamland; 11-14-2012 at 02:44 PM.
I appreciate for help I could get it work. The path goes to db and the I can weiw it.
But also I'd like by the way thambnail the images and locate path the same way .
image1 image2 image3 image4 image5 image6 image_small1 image_small2 image_small3 image_small4 image_small5 image_small6
I've got the thambnail script which I would like to implement here
Could you please help me do it
Code:
$i = 1;
$sm = 1;
$images_sm = "thumbnails_"$uploadFilename[$key];
// 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++; //<-- note that I removed the comma
$cols_sm[] = "image_small" . $sm++;
$data[] = "'" . basename($uploadFilename[$key]) . "'";
//-----------------------------------------------------------------------------------------------------
$width=100; //*** Fix Width & Heigh (Autu caculate) ***//
//$size=GetimageSize($images);
$size=GetimageSize($uploadFilename[$key]);
$height=round($width*$size[1]/$size[0]);
$images_orig = ImageCreateFromJPEG($uploadFilename[$key]);
$photoX = ImagesX($images_orig); // получаем ширину
$photoY = ImagesY($images_orig); // а здесь высоту
$images_fin = ImageCreateTrueColor($width, $height);
ImageCopyResampled($images_fin, $images_orig, 0, 0, 0, 0, $width+1, $height+1, $photoX, $photoY);
ImageJPEG($images_fin,"uploaded_files/".$images_sm);
ImageDestroy($images_orig);
ImageDestroy($images_fin);
// --------------------------------------------------------------------------------------------------------------
$data_sm[] = "'" . basename($uploadFilename[$key]) . "'";
}
$query = 'INSERT INTO `imloop` (' . implode(', ', $cols) . ' , ' . implode(', ', $cols_sm) . ')
VALUES (' . implode(', ', $data) . ' , ' . implode(', ', $data_sm) . ')';
Bookmarks