rajeevthomas Posted August 23, 2010 Share Posted August 23, 2010 Hi everyone... please help me with this. I have a gallery that I am working on. Part of that are two files upload.php and preupload.php which upload pics. And it does its job successfully BUT it shows an error 'Notice: Undefined offset: 9 in C:\wamp\www\upload.php on line 34' My line 34 is if($photos_uploaded['size'][$counter] > 0) . My whole code for the upload.php is <?php include("config.inc.php"); // initialization $result_final = ""; $counter = 0; // List of our known photo types $known_photo_types = array( 'image/pjpeg' => 'jpg', 'image/jpeg' => 'jpg', 'image/gif' => 'gif', 'image/bmp' => 'bmp', 'image/x-png' => 'png' ); // GD Function List $gd_function_suffix = array( 'image/pjpeg' => 'JPEG', 'image/jpeg' => 'JPEG', 'image/gif' => 'GIF', 'image/bmp' => 'WBMP', 'image/x-png' => 'PNG' ); // Fetch the photo array sent by preupload.php $photos_uploaded = $_FILES['photo_filename']; // Fetch the photo caption array $photo_caption = $_POST['photo_caption']; while( $counter <= count($_FILES['photo_filename']['tmp_name']) ) { if($photos_uploaded['size'][$counter] > 0) { if(!array_key_exists($photos_uploaded['type'][$counter], $known_photo_types)) { $result_final .= "File ".($counter+1)." is not a photo<br />"; } else { mysql_query( "INSERT INTO gallery_photos( `photo_filename`, `photo_caption`, `photo_category` ) VALUES( '0', '".addslashes($photo_caption[$counter])."', '".addslashes($_POST['category'])."')" ) or die(mysql_error() . 'Photo not uploaded'); $new_id = mysql_insert_id(); $filetype = $photos_uploaded['type'][$counter]; $extention = $known_photo_types[$filetype]; $filename = $new_id.".".$extention; mysql_query( "UPDATE gallery_photos SET photo_filename='".addslashes($filename)."' WHERE photo_id='".addslashes($new_id)."'" ); // Store the orignal file copy($photos_uploaded['tmp_name'][$counter], $images_dir."/".$filename); // Let's get the Thumbnail size $size = GetImageSize( $images_dir."/".$filename ); if($size[0] > $size[1]) { $thumbnail_width = 200; $thumbnail_height = (int)(200 * $size[1] / $size[0]); } else { $thumbnail_width = (int)(200 * $size[0] / $size[1]); $thumbnail_height = 200; } // Build Thumbnail with GD 1.x.x, you can use the other described methods too $function_suffix = $gd_function_suffix[$filetype]; $function_to_read = "ImageCreateFrom".$function_suffix; $function_to_write = "Image".$function_suffix; // Read the source file $source_handle = $function_to_read ( $images_dir."/".$filename ); if($source_handle) { // Let's create an blank image for the thumbnail $destination_handle = ImageCreateTrueColor ( $thumbnail_width, $thumbnail_height ); // Now we resize it ImageCopyResized( $destination_handle, $source_handle, 0, 0, 0, 0, $thumbnail_width, $thumbnail_height, $size[0], $size[1] ); } // Let's save the thumbnail $function_to_write( $destination_handle, $images_dir."/tb_".$filename, 99 ); ImageDestroy($destination_handle ); // $result_final .= "<img src='".$images_dir. "/tb_".$filename."' /> File ".($counter+1)." Added<br />"; } } $counter++; } // Print Result echo <<<__HTML_END <html> <head> <title>Photos uploaded</title> </head> <body> $result_final </body> </html> __HTML_END; ?> Quote Link to comment https://forums.phpfreaks.com/topic/211471-undefined-offset-error-please-help/ Share on other sites More sharing options...
trq Posted August 23, 2010 Share Posted August 23, 2010 Your while goes one increment too many. Should be..... while( $counter < count($_FILES['photo_filename']['tmp_name'])) Quote Link to comment https://forums.phpfreaks.com/topic/211471-undefined-offset-error-please-help/#findComment-1102592 Share on other sites More sharing options...
rajeevthomas Posted August 23, 2010 Author Share Posted August 23, 2010 That's awesome!! That did it.. that worked... you just showed that I have a lot to learn about PHP! Thank you very very much ... Quote Link to comment https://forums.phpfreaks.com/topic/211471-undefined-offset-error-please-help/#findComment-1102598 Share on other sites More sharing options...
trq Posted August 23, 2010 Share Posted August 23, 2010 That's awesome!! That did it.. that worked... you just showed that I have a lot to learn about PHP! Thank you very very much ... Just gotta remember that arrays start at 0. So if you have an array with 10 indexes within it, the highest index number will be 9 not 10. Quote Link to comment https://forums.phpfreaks.com/topic/211471-undefined-offset-error-please-help/#findComment-1102601 Share on other sites More sharing options...
rajeevthomas Posted August 23, 2010 Author Share Posted August 23, 2010 Thank you .....from every post here I walk away with something that I learned... thank you ...your reply makes sense... thanks again... Quote Link to comment https://forums.phpfreaks.com/topic/211471-undefined-offset-error-please-help/#findComment-1102605 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.