ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/pvmatricschool.com/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/pvmatricschool.com/admin/banner-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)."-image." . $extension; $upload = move_uploaded_file($_FILES['photo']['tmp_name'], 'upload/' . $image); $upload_image = 'upload/' . $image; } else{ $upload_image=''; } $statement = $pdo->prepare("INSERT INTO `banner`(`image_name`, `image`,`status`) VALUES (?,?,?)"); $result=$statement->execute(array($_POST['image_name'],$upload_image,1)); error_log($result); if($result){ $message = 'Gallery 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 Gallery : </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 class="required" for="desgination">Image Name</label> <input type="text" name="image_name" value="" placeholder="Enter The Image Name" class="form-control tip" id="image_name" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="file" class="required">Upload Image</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 class="col-sm-4"> <div class="form-group"> <label class="control-label required" for="departement_id">Select Department</label> <select name="department" class="form-control select2" style="width:100%" id="department" required> <option value="">Select The Department</option> <option value="1">CIVIL</option> <option value="2">EEE</option> <option value="3">MECH</option> <option value="4">CSE</option> <option value="5">ECE</option> <option value="6">BME</option> <option value="7">IT</option> <option value="8">AI & DS</option> </select> </div> </div>--> </div> <div class="form-group" style="text-align:center;"> <input type="submit" name="add_news" value="Add Gallery" class="btn btn-success" /> </form> </div> </div> <div class="form-group" style="text-align:center;"> <a href="gallery-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a> <a href="banner.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";?>