ok
Direktori : /proc/thread-self/root/proc/thread-self/root/home2/selectio/www/saew.in/admin/ |
Current File : //proc/thread-self/root/proc/thread-self/root/home2/selectio/www/saew.in/admin/project-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()); $statement = $pdo->prepare("INSERT INTO `tbl_project`(`project_heading`, `project_tagline`,`project_content`) VALUES (?,?,?)"); $result=$statement->execute(array($_POST['project_heading'],$_POST['project_tagline'],$_POST['project_content'])); error_log($result); if($result){ $message = 'New Project 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 On Going Project : </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">Project Heading</label> <input type="text" name="project_heading" value="" placeholder="Enter The Project Heading" class="form-control tip" id="project_heading" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="desgination">Project Tagline</label> <input type="text" name="project_tagline" value="" placeholder="Enter The Project Tagline" class="form-control tip" id="project_tagline" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="desgination">Project Content</label> <textarea type="text" name="project_content" value="" placeholder="Enter The Project Content" class="form-control tip" id="project_content" required="required" ></textarea> </div> </div> </div> <div class="form-group" style="text-align:center;"> <input type="submit" name="add_news" value="Add Project" class="btn btn-success" /> </form> </div> </div> <div class="form-group" style="text-align:center;"> <a href="news-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a> <a href="news.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> window.onload = function() { $("#upload").hide(); }; $(function () { $("#type_id").change(function() { var val = $(this).val(); //console.log('If Before llog :'+val); if(val==0) { $("#upload").hide(); //console.log('If indside llog :'+1); }else if(val==1){ $("#upload").show(); }else{ $("#upload").hide(); } }); }); </script> <?php include "footer.php";?>