ok
Direktori : /proc/thread-self/root/home2/selectio/www/lilyexpresslive/expense-invoice/ |
Current File : //proc/thread-self/root/home2/selectio/www/lilyexpresslive/expense-invoice/cash-add.php |
<?php include "header.php"; if(isset($_POST['add_cash'])){ try{ $date = date('Y-m-d h:i:s', time()); $statement = $pdo->prepare("INSERT INTO `tbl_cash`( `user_id`, `type`, `location`, `amount`, `cash_date`, `note`, `transaction_id`, `created_at`) VALUES (?,?,?,?,?,?,?,?)"); $result=$statement->execute(array($_SESSION['lily']['id'],$_POST['type'],$_POST['location'],$_POST['amount'],$_POST['date'],$_POST['note'],$_POST['transaction_id'],$date)); if($result){ $message = 'Cash is 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 Cash</h1> <ol class="breadcrumb"> <li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li> <li class="active">Add Cash</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 class="required" for="location">Select Location</label> <select name="location" class="form-control tip select2" id="location" required="required"> <option value="">Select Location</option> <?php $statement = $pdo->prepare("SELECT * FROM `tbl_exp_location`"); $statement->execute(); $location_result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($location_result as $result) { echo "<option value=".$result['id'].">".$result['office']."-".$result['location']."</option>"; }?> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="name">Date</label> <input type="text" name="date" value="<?=date("Y-m-d")?>" class="form-control datetimepicker" id="date" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="email">Select Cash Add Type:</label> <select class="form-control tip select2" id="type" name="type"> <option value="1">Cash</option> <!--<option value="2" >Debit</option> <option value="3" >Money Transfer</option>--> <option value="4">Card</option> <option value="5">UPI Transfer</option> <option value="6">Acc Transfer</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="optional" for="role">Transaction Id</label> <input type="text" name="transaction_id" value="" class="form-control tip" id="transaction_id" placeholder="Enter Transaction number" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="role">Amount</label> <input type="Number" name="amount" value="" class="form-control tip" id="amount" required="required" placeholder="Enter Amount" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="optional" for="role">Notes</label> <textarea rows="5" cols="5" class="form-control" name="note" value="" placeholder="Enter your Note here"></textarea> </div> </div> </div> <div class="form-group" style="text-align:center;"> <input type="submit" name="add_cash" value="Add Cash" class="btn btn-success" /> </form> </div> </div> <div class="form-group" style="text-align:center;"> <a href="cash-add.php"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></a> <a href="cash.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> <?php include "footer.php";?>