ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/caliberembedded.com/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/caliberembedded.com/admin/blog-add.php |
<?php include "header.php"; $date = date('Y-m-d'); if(isset($_POST['add_blog'])){ try{ $title = $_POST['title']; $date = $_POST['date']; $time = $_POST['time']; $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'], 'images/blog/' . $image); $upload_image = 'images/blog/' . $image; } else{ $upload_image=''; } $statement = $pdo->prepare("INSERT INTO `tbl_blog`(`image`,`title`,`date`,`time`) VALUES (?,?,?,?)"); $result=$statement->execute(array($upload_image,$title,$date,$time)); error_log($result); if($result){ $message = 'Blog added successfully!'; unset($_POST); }else{ $warning="Something went wrong try again..."; } }catch(Exception $e){ $error=$e; } } ?> ?> <div class="content-wrapper"> <section class="content-header"> <h1>Add Blog</h1> <ol class="breadcrumb"> <li><a href="index.php"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Add Blog</li> </ol> </section> <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 class="box box-primary"> <div class="box-header"> <h3 class="box-title">Please fill in the information below</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">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-md-4"> <div class="form-group"> <label class="required" for="category">Title</label> <input type="text" name="title" value="" placeholder="Enter the Title" class="form-control tip" id="title" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="category">Date</label> <input type="date" name="date" value="" placeholder="Enter the Title" class="form-control tip" id="date" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="category">Time</label> <input type="time" name="time" value="" placeholder="Enter the Title" class="form-control tip" id="time" required="required" /> </div> </div> </div> <div class="form-group" style="text-align:center;"> <input type="submit" name="add_blog" value="Add Blog" class="btn btn-success" /> </form> </div> </div> <div class="form-group" style="text-align:center;"> <a href="blog-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a> <a href="blog.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 include "footer.php";?>