Image Uploading Script using PHP

Image Uploading Script using PHP, It is very simple script to gather the images from website. If user want to upload the images they upload the images using this php script. All the uploaded images will store some specific folder. Here i am using the file name is called upload, When user upload the all those images will store in upload folder. but you should create one empty folder to your root and also you should name it as a upload.

Here i given the maximum upload size for the image is 2mb. format also i mentined in the php script. You can customize the height width and size of the image and also format of the images.
$allowtype = array('bmp', 'gif', 'jpg', 'jpe', 'png','psd');  

This is very useful and also very simple this kind of method also implemented in cms type frameworks like wordpress.



Upload.php

<?php
$uploadpath = 'upload/';     
$max_size = 2000;         
$alwidth = 900;           
$alheight = 800;          
$allowtype = array('bmp', 'gif', 'jpg', 'jpe', 'png','psd');       

if(isset($_FILES['fileup']) && strlen($_FILES['fileup']['name']) > 1) {
  $uploadpath = $uploadpath . basename( $_FILES['fileup']['name']);      
  $sepext = explode('.', strtolower($_FILES['fileup']['name']));
  $type = end($sepext);      
  list($width, $height) = getimagesize($_FILES['fileup']['tmp_name']);     
  $err = '';         

  if(!in_array($type, $allowtype)) $err .= 'The file: <b>'. $_FILES['fileup']['name']. '</b> not has the allowed extension type.';
  if($_FILES['fileup']['size'] > $max_size*1000) $err .= '<br/>Maximum file size must be: '. $max_size. ' KB.';
  if(isset($width) && isset($height) && ($width >= $alwidth || $height >= $alheight)) $err .= '<br/>The maximum Width x Height must be: '. $alwidth. ' x '. $alheight;

  if($err == '') {
    if(move_uploaded_file($_FILES['fileup']['tmp_name'], $uploadpath)) { 
      echo 'File: <b>'. basename( $_FILES['fileup']['name']). '</b> successfully uploaded:';
      echo '<br/>File type: <b>'. $_FILES['fileup']['type'] .'</b>';
      echo '<br />Size: <b>'. number_format($_FILES['fileup']['size']/1024, 3, '.', '') .'</b> KB';
      if(isset($width) && isset($height)) echo '<br/>Image Width x Height: '. $width. ' x '. $height;
      echo '<br/><br/>Image address: <b>http://'.$_SERVER['HTTP_HOST'].rtrim(dirname($_SERVER['REQUEST_URI']), '\\/').'/'.$uploadpath.'</b>';
    }
    else echo '<b>Unable to upload the file.</b>';
  }
  else echo $err;
}
?> 
<div style="margin:1em auto; width:333px; text-align:center;">
 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST" enctype="multipart/form-data"> 
  Upload File: <input type="file" name="fileup" /><br/>
  <input type="submit" name='submit' value="Upload" /> 
 </form>
</div>

Post a Comment

0 Comments