ok

Mini Shell

Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/public_html/saew.in/admin/
Upload File :
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/public_html/saew.in/admin/client-add.php

<?php  include "header.php";
$date = date('Y-m-d'); 
if(isset($_POST['add_news'])){
        try{
            $date = date('Y-m-d h:i:s', time());
            
             if(isset($_FILES['photo']) && $_FILES["photo"]["name"]!=""){
                        $extension = end(explode(".", $_FILES["photo"]["name"]));
                        $image = rand(10,1000000000)."-gallery." . $extension;
                        $upload = move_uploaded_file($_FILES['photo']['tmp_name'], 'upload/' . $image);
                        $upload_image = 'upload/' . $image;   
                }
                else{
                    $upload_image='';
                }
              

         $statement = $pdo->prepare("INSERT INTO `tbl_client`(`client_image`) VALUES (?)");
            $result=$statement->execute(array($upload_image));
                 error_log($result);   
                    if($result){
                        $message = 'Client Image added successfully!';
                        unset($_POST);  
                        
                    }else{
                        $warning="Something went wrong try again...";
                    }  
                }catch(Exception $e){
                    $error=$e;
                }   
    }
    
?>



?>
<div class="content-wrapper" style="background:white;">
        <div class="col-lg-12 alerts">
            <div id="custom-alerts" style="display:none;">
                <div class="alert alert-dismissable">
                    <div class="custom-msg"></div>
                </div>
            </div>
            <?php if ($error)  { ?>
            <div class="alert alert-danger alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-ban"></i> Error</h4>
                <?= $error; ?>
            </div>
            <?php $error=0;} if ($warning) { ?>
            <div class="alert alert-warning alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4><i class="icon fa fa-warning"></i> warning</h4>
                <?= $warning; ?>
            </div>
            <?php  $warning=0;} if ($message) { ?>
            <div class="alert alert-success alert-dismissable">
                <button aria-hidden="true" data-dismiss="alert" class="close" type="button">×</button>
                <h4>    <i class="icon fa fa-check"></i> Success</h4>
                <?= $message; ?>
            </div>
            <?php $message=0; } ?>
        </div>
        <div class="clearfix"></div>







<section class="content">
    <div class="row">
        <div class="col-xs-12">
            <div>
                <div class="box-header">
                    <h3 class="box-title"><b>Create Client : </b></h3>
                </div>
                <div class="box-body">
                    <div class="col-lg-12">

                        <form action="" class="validation" enctype="multipart/form-data" method="post" accept-charset="utf-8">
                                                                 
                        <div class="row">

                            <div class="col-md-4">
                                <div class="form-group">
                                    <label for="file" class="required">Client Image Size ( width :300 ,Height : 200 ) </label>                                    
                                    <input type="file" name="photo" value="" id="photo" placeholder="Upload Image" class="form-control tip" required/>
                                </div>
                                <span style="color: red;" id="photospan"></span>
                            </div>
                            
       
                            
                        </div>
                        

                        <div class="form-group" style="text-align:center;">
                            <input type="submit" name="add_news" value="Add Client"  class="btn btn-success" />
                        </form>
                        </div>

                    </div>
                        <div class="form-group" style="text-align:center;">
                            <a href="client-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a>
                            <a href="client.php"><button class="btn btn-warning" ><i class="fa fa-chevron-left"></i> Back to List</button></a>
                         </div>
                    <div class="clearfix"></div>
                </div>
            </div>
        </div>
    </div>
</section>

<script>
var photo = document.getElementById("photo");
photo.onchange = function() {
    console.log(photo);
    $('#photospan').text('');
    if(this.files[0].size > 1048576){
        $('#photospan').text('Photo Image Maximum 1 mb Allowed');
       alert("File is too big!");
       this.value = "";
    };
};

</script>

<?php 

 define ("MAX_SIZE","400");

 $errors=0;
 
 if($_SERVER["REQUEST_METHOD"] == "POST")
 {
        $image =$_FILES["file"]["image_name"];
 $uploadedfile = $_FILES['file']['photo'];

  if ($image) 
  {
  $filename = stripslashes($_FILES['file']['image_name']);
        $extension = getExtension($filename);
  $extension = strtolower($extension);
 if (($extension != "jpg")&& ($extension != "png")) 
  {
echo ' Unknown Image extension ';
$errors=1;
  }
 else
{
   $size=filesize($_FILES['file']['photo']);
 
if($extension=="jpg" || $extension=="jpeg" )
{
$uploadedfile = $_FILES['file']['photo'];
$src = imagecreatefromjpeg($uploadedfile);
}
else if($extension=="png")
{
$uploadedfile = $_FILES['file']['photo'];
$src = imagecreatefrompng($uploadedfile);
}
else 
{
$src = imagecreatefromgif($uploadedfile);
}
 
list($width,$height)=getimagesize($uploadedfile);

$newwidth=50;
$newheight=($height/$width)*$newwidth;
$tmp=imagecreatetruecolor($newwidth,$newheight);

$newwidth1=50;
$newheight1=($height/$width)*$newwidth1;
$tmp1=imagecreatetruecolor($newwidth1,$newheight1);

imagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,
 $width,$height);

imagecopyresampled($tmp1,$src,0,0,0,0,$newwidth1,$newheight1, 
$width,$height);

$filename = "images/". $_FILES['file']['image_name'];
$filename1 = "images/small". $_FILES['file']['image_name'];

imagejpeg($tmp,$filename,100);
imagejpeg($tmp1,$filename1,100);

imagedestroy($src);
imagedestroy($tmp);
imagedestroy($tmp1);
}
}
}
//If no errors registred, print the success message

 if(isset($_POST['Submit']) && !$errors) 
 {
   // mysql_query("update SQL statement ");
  echo "Image Uploaded Successfully!";

 }
 ?>


<?php include "footer.php";?>

Zerion Mini Shell 1.0