ok
Direktori : /home2/selectio/www/lilyexpresslive/software/admin/ |
Current File : /home2/selectio/www/lilyexpresslive/software/admin/content_desc-add.php |
<?php require_once('header.php'); ?> <?php if(isset($_POST['form1'])) { $valid = 1; if(empty($_POST['short_desc'])) { $valid = 0; $error_message .= 'Short Description can not be empty<br>'; } if(empty($_POST['full_desc'])) { $valid = 0; $error_message .= 'Full Description can not be empty<br>'; } $short_desc=$_POST['short_desc']; $statement = $pdo->prepare("SELECT * FROM material_desc where short_desc='$short_desc'"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); if($result) { $valid=0; $error_message .= 'Short Description Alreay Exist<br>'; } if($valid==1) { $statement = $pdo->prepare("INSERT INTO material_desc (short_desc,full_desc) VALUES (?,?)"); $statement->execute(array($_POST['short_desc'],$_POST['full_desc'])); $success_message = 'Material Description is added successfully!'; unset($_POST['short_desc']); unset($_POST['full_desc']); } } ?> <section class="content-header"> <div class="content-header-left"> <h1>Add Material Description</h1> </div> <div class="content-header-right"> <a href="content_desc.php" class="btn btn-primary btn-sm">View All</a> </div> </section> <section class="content"> <div class="row"> <div class="col-md-12"> <?php if($error_message): ?> <div class="callout callout-danger"> <p> <?php echo $error_message; ?> </p> </div> <?php endif; ?> <?php if($success_message): ?> <div class="callout callout-success"> <p><?php echo $success_message; ?></p> </div> <?php endif; ?> <form class="form-horizontal" action="" method="post" enctype="multipart/form-data"> <div class="box box-info"> <div class="box-body"> <div class="form-group"> <label for="" class="col-sm-2 control-label">Short Description <span>*</span></label> <div class="col-sm-6"> <input type="text" autocomplete="off" class="form-control" name="short_desc" value="<?php if(isset($_POST['short_desc'])){echo $_POST['short_desc'];} ?>"> </div> </div> <div class="form-group"> <label for="" class="col-sm-2 control-label">Full Description <span>*</span></label> <div class="col-sm-6"> <input type="text" autocomplete="off" class="form-control" name="full_desc" value="<?php if(isset($_POST['full_desc'])){echo $_POST['full_desc'];} ?>"> </div> </div> <div class="form-group"> <label for="" class="col-sm-2 control-label"></label> <div class="col-sm-6"> <button type="submit" class="btn btn-success pull-left" name="form1">Submit</button> </div> </div> </div> </div> </form> </div> </div> </section> <?php require_once('footer.php'); ?>