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);
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.
11-25-2012, 10:25 AM
streamland
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++;