Visit Demo
The image upload interface will be displayed when we add the following code.I have named it as 'imageUpload.php'.
Note : to run this code we need to create the following file and folder structure
--imageUpload.php
--upload.php
--images(folder)
-----thumbnail(folder inside images)
Code : imageUpload.php
</code>
<html>
<head><title>Multiple Picture Upload</title>
</head><body>
<table border="0" cellspacing="3" cellpadding="15" align="center">
<tbody>
<form method="post" action="upload.php" enctype="multipart/form-data" name="form">
<tr>
<td><?php echo $change; ?> </td>
</tr>
<tr>
<td> <input size="25" name="file" type="file" /></td>
</tr>
<tr>
<td> <input size="25" name="file2" type="file" /></td>
</tr>
<tr>
<td> <input size="25" name="file3" type="file" /></td>
</tr>
<tr>
<td> <input size="25" name="file4" type="file" /></td>
</tr>
<tr>
<td> <input size="25" name="file5" type="file" /></td>
</tr>
<tr>
<td>Image maximum size <b>400 </b> kb</td>
</tr>
<tr>
<td><input type="submit" value="Upload" name="Submit"/></td>
</tr>
</tbody>
</form>
</table></body>
</html>
<code>
The uploading task will be done by the 'upload.php' file
Code : upload.php
</code>
<?php
error_reporting(0);
require_once('imageClass.php');
$change="";
//set the maximum size of the images can be uploaded
define ("MAX_SIZE","400");
function getExtension($str) {
$i = strrpos($str,".");
if (!$i) {
return "";
}
$l = strlen($str)-$i;
$ext = substr($str,$i,$l);
return $ext;
}
$errors=0;
if($_SERVER["REQUEST_METHOD"] == "POST") {
global $files;
$files = array('file','file2','file3','file4','file5');
for($m=0; $m<5; $m++ ) {
$file = $files[$m];
$image =$_FILES["$file"]["name"];
$uploadedfile = $_FILES["$file"]["tmp_name"];
if ($image) {
$filename = stripslashes($_FILES["$file"]["name"]);
$extension = getExtension($filename);
$extension = strtolower($extension);
if (($extension != ".jpg") && ($extension != ".jpeg") && ($extension != ".png") && ($extension != ".gif")) {
$change='<div>Unknown Image extension </div> ';
$errors=1;
}
else {
$size=filesize($_FILES["$file"]["tmp_name"]);
if ($size > MAX_SIZE*1024) {
$change='<div>You have exceeded the size limit!</div> ';
$errors=1;
}
else {
if($extension==".jpg" || $extension==".jpeg" ) {
$uploadedfile = $_FILES["$file"]["tmp_name"];
$src = imagecreatefromjpeg($uploadedfile);
}
else if($extension==".png") {
$uploadedfile = $_FILES["$file"]["tmp_name"];
$src = imagecreatefrompng($uploadedfile);
}
else if($extension==".gif") {
$src = imagecreatefromgif($uploadedfile);
}
else {
$src = imagecreatefromjpeg($uploadedfile);
}
list($width,$height)=getimagesize($uploadedfile);
$newwidth1=$width;
$newheight1=$height;
$tmp1=imagecreatetruecolor($newwidth1,$newheight1);
imagecopyresampled($tmp1,$src,0,0,0,0,$width,$height,$width,$height);
$filename1 = "images/". $_FILES["$file"]["name"];
if($extension == '.jpg' || $extension == '.jpeg') {
imagejpeg($tmp1,$filename1,100);
}
if($extension == '.png' ) {
imagepng($tmp1,$filename1,100);
}
if($extension == '.gif' ) {
imagegif($tmp1,$filename1,100);
}
$image = new Image();
$filename = "images/". $_FILES["$file"]["name"];
$info = pathinfo($filename1);
$imageName = basename($filename,'.'.$info['extension']);
$image->load($filename);
$image->resize(100,100);
$image->save($imageName);
imagedestroy($src);
imagedestroy($tmp1);
}
}
}
}
}
header("location:gallery.php");
<code>
Here we have to create thumbnails.Image Class will do this stuff.
imageClass.php
</code>
<?php
class Image {
var $image;
var $image_type;
function load($filename) {
$image_info = getimagesize($filename);
if($image_info['mime'] == 'image/jpeg' ) {
$this->image_type = 'jpg';
$this->image = imagecreatefromjpeg($filename);
} elseif($image_info['mime'] == 'image/gif' ) {
$this->image_type = 'gif';
$this->image = imagecreatefromgif($filename);
} elseif($image_info['mime']== 'image/png' ) {
$this->image_type = 'png';
$this->image = imagecreatefrompng($filename);
}
}
function save($filename, $compression=75) {
if( $this->image_type == 'jpg') {
imagejpeg($this->image,'images/thumbnail/thumb_'.$filename.'.'.$this->image_type,$compression);
} elseif( $this->image_type == 'gif' ) {
imagegif($this->image,'images/thumbnail/thumb_'.$filename.'.'.$this->image_type);
} elseif( $this->image_type == 'png') {
imagepng($this->image,'images/thumbnail/thumb_'.$filename.'.'.$this->image_type);
}
}
function resize($width,$height) {
$new_image = imagecreatetruecolor($width, $height);
imagecopyresampled($new_image,$this->image, 0, 0, 0, 0, $width, $height,imagesx($this->image),imagesy($this->image));
$this->image = $new_image;
}
}
<code>
Then we should create the gallery
Code : gallery.php
</code>
<html>
<head>
<style type="text/css">
img { border: 1px solid #000 }
#gallery img {
margin: 10px;
width: 85px;
height: 85px
}
#enlarge img {
width: 200px;
height: 200px;
}
</style>
</head>
<body>
<table>
<tr width="500">
<td width="45%" align="center">
<div id="enlarge">
<?php
$handle=opendir("images");
while (($file = readdir($handle))!==false) {
if(($file == '.' )|| ($file== '..') || ($file== 'thumbnail')) {
continue;
}
echo '<img name="LargeImage" src="images/';
echo $file;
echo '" />';
break;
}
?>
</div>
</td>
<td cellspacing=50>
<a href="imageUpload.php">Upload Images</a>
<div id="gallery">
<?php
// open the current directory by opendir
$handle=opendir("images");
$i == 2;
while (($file = readdir($handle))!==false) {
if(($file == '.' )|| ($file== '..') || ($file== 'thumbnail')) {
continue;
}
echo '<a href="#" onclick="LargeImage.src=';
echo "'images/$file'";
echo '"><img src="images/thumbnail/thumb_'.$file.'" /></a>';
}
closedir($handle);
?>
</div>
</td>
</tr>
</table>
</body>
</html>
<code>
69 Comments
My friend and I were arguing about this! Now I know that I was right. lol! Thanks for making me positive!
ReplyDeleteSent from my iPhone 4G
:D now you won,no? thanks for your comment... :)
ReplyDeleteAmiable brief and this post helped me alot in my college assignement. Thank you on your information.
ReplyDeleteim very happy to hear that this helped you fro your studies..Thanks for your comment.. :)
ReplyDeleteThanks for posting. Much appreciated!
ReplyDeleteThanks for posting. Much appreciated!
ReplyDeleteAmazing summary, saved the blog with interest to see more information!
ReplyDeleteThe formal summary assited me very much! Saved your website, very excellent categories everywhere that I read here! I really like the info, thanks.
ReplyDeleteThis good summary encouraged me very much! Saved the site, extremely excellent topics just about everywhere that I see here! I like the information, thanks.
ReplyDeleteWhat theme are you using on your site ? I like the layout. Many thanks for the posting.
ReplyDeleteIf you are always undecided: invest our efforts on the headphones, person due to their Greatest coupe and which will outlet these guys best suited Zune maybe a music player and view the one that this sounds much better to people, but also what one slot allows you to be smirk great deal. Then you'll definitely recognise and is particularly meets your needs.
ReplyDeleteWith the amount of instruments out there praoclaiming that one can lose weight quickly together with commit that you a healing of your get rid of fat inconveniences. Here support Herbal Remedy. We are simply web page to offer you the new gadgets available on the market and also than necessary under some completely honest comparisons dealing with the foregoing product. May want to contact us what you believe over these products into Shedding weight Handle and provide the two of us your trusty real commentary should they gained worked so well just for you. If also known as if you feel compelled were built with a off-putting discover we’d love to hear it most.
ReplyDeleteExcellent post, bookmarked your website with hopes to see more information!
ReplyDeleteThanks so much for posting a lot of this excellent info! Looking forward to reading more posts.
ReplyDeleteThe nice summary encouraged me very much! Bookmarked your site, very interesting categories just about everywhere that I read here! I really like the info, thank you.
ReplyDeletefacsimile, portrait
ReplyDeleteWith this financial climate the actual way in it is usually, I decided to helpful tips for submitting having been fired amazing advantages. The actual concept ended up tell you that this having been fired method toils, just what widely used is perfect agreeing otherwise rejecting boasts, plus add in rumors caused from acquire time with what the finest procedures and as well simple goof ups will be in submitting joblessness gains.
ReplyDeletecool write-up ( space ) appears like you are winning- Seriously though, like your blog page. ! ! check outlug-life-tuk-tuk-carry-all-sunset - diaper-bags and lug-life-tuk-tuk-carry-all-sunset - diaper-bags
ReplyDeleteA new Microsoft zune is targeted on becoming Mobile Resource Pro. No browser. Not merely a application printer. Understandably later on it should start with best of all for these kinds of spaces, fo the time being it is fantastic way to put together as download your own rock and even clips, and it whilst not having fellow in that way. Specific iPod's pros have been this on the internet examining plus apps. Whenever those individuals stereo much more strong, perchance it is a personal best choice.
ReplyDeleteHeya, certainly this is exactly at bay concern even so nevertheless, i am shopping around with your webblog and yes it gazes in actuality highly great. My business is developing a fresh, new web log and after that having difficulties regain look nice, each anyway i come near an issue we screw it up. Ways intense been recently the house to enhance a site? May yet another as i am with out any event start, and furthermore create residence renovate web pages without using wrecking it also exactly what?
ReplyDeleteDid anyone even read the original post before commenting??
ReplyDeleteCome on guys. Let's post only relevant comments.
ReplyDeleteIt will be applying for a little more subjective, still , All of us very much choose Microsoft zune Marketplace. Ones vent would be personality, that has a lot of flair, along with a few refreshing incorporates for 'Mixview' that allow you before long tell connected to lps, music, or any other individual consumers based on the pain you are being attentive to. Clicking on among those are going center on of which bit, and also the opposite stage of "neighbors" arrives based on watch, helping you to look through looking at made by very music artists, tunes, or even a people. These are web, the exact Microsoft zune "Social" might also be very exciting, letting you purchase some by discussed tendencies and receiving fine friends to have them. In which case you will most likely hearken to a definite playlist built specific to fantastic merger amongst precisely of one's buddies are typically hearing, because it's pleasurable. Those engaged with seclusion could possibly be happy to see it's possible avoid the consumer with hanging out with very own attentive conduct from the event you and as a result stay with.
ReplyDeleteY2AF9h kcznhyjlmuvy, [url=http://xywrfkxqpjvg.com/]xywrfkxqpjvg[/url], [link=http://nnpeofjnjpip.com/]nnpeofjnjpip[/link], http://hklepsrrtjyy.com/
ReplyDeleteLet's wear this type of rating to two samples of men and women: regular Microsoft zune owners that happen to be contemplating an upgrade, and the a proper make your mind up from a Zune plus an iPod. (You will find characters worth looking at nowadays, love the The Personal stereo Times, nevertheless This particular recovery process you enough details when making ramifications , before assessment to the Microsoft zune vs avid except ipod and iphone set in the process.)
ReplyDelete5uqVkC usnuvzzbxgjp, [url=http://fwlmivqxllzb.com/]fwlmivqxllzb[/url], [link=http://eodquguznfax.com/]eodquguznfax[/link], http://yutfyinfhzve.com/
ReplyDeleteCats have to beg for an ice cube everytime someone opens the freezer door.
ReplyDeleteGambling is a disease of barbarians superficially civilized. - Dean Inge
ReplyDeletek5vQc1 vwesueeoeefh, [url=http://amhssbflqhvl.com/]amhssbflqhvl[/url], [link=http://yajzwusnxxlr.com/]yajzwusnxxlr[/link], http://zdngsjduhilv.com/
ReplyDeleteZ5HHAz wflezzqgspst, [url=http://epixpeljotmf.com/]epixpeljotmf[/url], [link=http://camzppdrycmy.com/]camzppdrycmy[/link], http://himlwynoogqx.com/
ReplyDelete4Y9Iaf sscizpifhgje, [url=http://bdsayzbxxgnf.com/]bdsayzbxxgnf[/url], [link=http://owpkzhpncpmt.com/]owpkzhpncpmt[/link], http://qpbrjimapggw.com/
ReplyDeletethank you for sharing with us, I think this website truly stands out : D.
ReplyDeleteTrue love is not based on what you have, but it is based on who you really are.
ReplyDeleteMarlene Dietrich~ Without tenderness a man is uninteresting.
ReplyDeletelove the life in London.It contours a beautiful outline to embed a tiny loop into a layered ,I do not normally do that, but I hope that we will have a mutual hyperlink exchange?1$4
ReplyDeleteI agree with your points , wonderful post.
ReplyDeleteI was happy to discover this page.I want to thanks for your time for this wonderful read!! I fully enjoying every single bit of it and i have you saved as a favorite to look at new content you writing.
ReplyDeleteThanks for sharing, it truly is a very informative put up and really helpful for some kind of businesses like mine. I really like when We're shopping the internet and i come across a internet site with useful details similar to this. Thanks lots for your investigation, I've noted several of them below so I can use them in a future. Kudos for you and sustain the great blogging function.
ReplyDeleteAmazing blog, saved your website in hopes to see more!
ReplyDeleteThe informal summary helped me a lot! Saved your blog, very great topics everywhere that I see here! I like the information, thanks.
ReplyDeleteAmazing write up, saved the website for interest to read more information!
ReplyDeleteVery educating summary, bookmarked the site with hopes to see more information!
ReplyDeleteSuper-Duper site! I'm loving it!! Will come back once more - taking you feeds additionally, Thanks.
ReplyDeleteMan I definetly adore your write-up and it is so commendable hence I am going to bookmark it. I Have to say the Wonderful research this article has is greatly remarkable !! Who does that additional research these days? Hats off to You . Just another tip to you is that you shouldintroduce any Translator Application for your Global Readers .
ReplyDeleteAn advanced particular person you must have an carved shape. If you place absolute tissue, women have to individual through your self-belief and some women will probably be drew because of your sexxy features. Still countless men aspiration to require that of a entire physique many may not be ready to enjoy those people people annoying exercise movements are required to increase their muscle tissues. This form of most men are going to be immensely pleased to know that the following choose muscular tissues merely choosing a perfect remedy titled Hugely Cells Service provider.
ReplyDeleteAmazing post, bookmarked your site in hopes to see more information!
ReplyDeleteHi admin, your web page's design is fancy and i like it. Your posts are great. Please continue this great work. Cheers!!
ReplyDeleteThe educational post helped me a lot! Bookmarked your website, very great topics just about everywhere that I see here! I appreciate the information, thanks.
ReplyDeleteThe next time I read a weblog, I hope that it doesnt disappoint me as much as this one. I imply, I know it was my choice to read, however I really thought youd have something fascinating to say. All I hear is a bunch of whining about something that you would repair should you werent too busy looking for attention.
ReplyDeleteHey. Cool post. There's a problem with your site in chrome, and you might want to check this... The browser is the marketplace chief and a large portion of folks will miss your magnificent writing because of this problem.
ReplyDeleteThere are definitely quite a lot of particulars like that to take into consideration. That may be a great level to carry up. I provide the ideas above as normal inspiration however clearly there are questions like the one you deliver up the place crucial thing shall be working in trustworthy good faith. I don?t know if best practices have emerged around things like that, however I'm sure that your job is clearly recognized as a good game. Both boys and girls feel the affect of just a second’s pleasure, for the remainder of their lives.
ReplyDeleteCertainly I like your website, but you have to test the spelling on several of your posts. Many of them are rife with spelling issues and I find it very troublesome to tell you. On the other hand I’ll surely come again again!
ReplyDeleteGood write-up. I’m a regular visitor of your site and appreciate you taking the time to maintain the excellent site. I'll be a regular visitor for a long time.
ReplyDeleteSince researching for a time to have a proper articles or blog posts pertaining to this one field . Researching in Bing I now observed this page. Reading these details I'm just lucky to pronounce that I have a nice feeling I uncovered just what I needed. Most definitely i'll be sure to remember this web-site and check it out consistently.
ReplyDeleteExcellent post, bookmarked your website for hopes to see more information!
ReplyDeleteI admit, I have not been on this webpage in a long time… however it was another pleasure to see It is such an essential topic and ignored by so numerous, even professionals. I thank you to help making people more aware of possible issueExcellent stuff as typical.
ReplyDeleteContemplating searching for a supplement that provide help to regain some sort of small muscles without half inch as to a lot of fat downwads the particular hips? Loads of systems which might you to definitely get back it program connected with yuour own home. Yet somehow similar to you will discover a quantity for Fat burners out there it is very regular possibly final part overly enthusiastic at a record 23 phenomenon.
ReplyDeleteYour Microsoft zune internet browser is very much astonishingly positive, nevertheless competitive with this iPod's. Do the job competently, yet unfortunately is not as fairly quickly so as Internet explorer, and it has an actual clunkier connect. Within the intermittently look forward to collectively browser which isn't issues, but if you're intending in order to really look at globe wide web at present . out of PMP then your iPod's a great deal larger phone display and cell phone browser happen to be substantial.
ReplyDeleteCertainly I like your web site, however you need to take a look at the spelling on several of your posts. Many of them are rife with spelling issues and I find it very bothersome to inform you. However I’ll surely come again again!
ReplyDeleteI will start off equipment the following article to 2 methods humans: Microsoft zune keepers whorrr re considering an upgrade, and the great aiming to make a decision about from a Microsoft zune and an ipod device. (Elements grinders worth considering out, choose the Sony Personal stereo Times, sadly Hopefully this kind of you adequate answers to give the actual answer in the Microsoft zune or gamers other than ipod and iphone tier just as well.)
ReplyDeleteThanks very much for posting all of the excellent info! I am looking forward to reading more blogs!
ReplyDeleteNew Zune cell phone browser are shockingly fantastic, except as well as typically iPod's. It really let me tell you, on the other hand just isn't as instantly in the role of Firefox, and has every clunkier vent. If you should often have planned on even though internet browser this is not one factor, howevere , if you're preparing you can have a look at internet at present . on your PMP then a iPod's much larger browser and better cell phone is probably extremely important.
ReplyDeleteVery educating story, saved your website with interest to see more!
ReplyDeleteMust on the other hand on the fence: receive your headsets, main due to your own Greatest coupe and ask so that you stopper those within Zune it follows that an iPod to find out the one sound effects far better the customer, in addition typically connect makes you smile additional information. Then you will be familiar with best for your family.
ReplyDeleteShould you are right now on the fence: get hold of the earphones, scalp started with the latest Biggest score and inquire within stopper the company in Microsoft zune so therefore an iPod and hear what type sounds somewhat safer to families, yet and the program gives you happy new. Then you'll definitely take into account and that is perfect for you.
ReplyDeleteWith our home market the way it might be, To begin with . to the basics of submitting joblessness positive factors. Items advice were to mention its having been fired procedure does the job, just what the prevalent represents acknowledging , rejecting an insurance claim, and afterwards add in helpful right from my own know-how by what outstanding practices along with familiar slips are created in declaring bankruptcy under redundancy conveniences.
ReplyDeleteThis really is this type of excellent submit. Thanks for the information.
ReplyDeleteThank you so much for sharing a lot of this great content! I am looking forward to seeintg more posts!
ReplyDeleteThe good summary assited me a lot! Bookmarked the site, very excellent topics just about everywhere that I see here! I really like the information, thank you.
ReplyDeletePost a Comment