ok
Direktori : /proc/thread-self/root/home2/selectio/www/obnovit-tracking/ |
Current File : //proc/thread-self/root/home2/selectio/www/obnovit-tracking/attendance-add.php |
<?php include "header.php"; if(isset($_POST['add_attendence'])){ try{ $date = date('Y-m-d h:i:s', time()); $statement = $pdo->prepare("INSERT INTO `tbl_attendence`(`attendence_date`, `resource_name`, `project_name`, `department`,`attendence_type`,`notes`) VALUES (?,?,?,?,?,?)"); $result=$statement->execute(array($_POST['attendence_date'],$_POST['emp_name'],$_POST['project_name'],$_POST['department_name'],$_POST['attendence_type'],$_POST['notes'])); if($result){ $statement = $pdo->prepare("INSERT INTO `tbl_project_reports`(`user_id`, `project_id`, `project_date`) VALUES (?,?,?)"); $result=$statement->execute(array($_POST['emp_name'],$_POST['project_name'],$_POST['attendence_date'])); $message = 'Attendence 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> <br> <?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 Attendence: </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-3"> <div class="form-group"> <label class="required" for="attendence_date">Attendence Date</label> <input type="date" name="attendence_date" class="form-control tip" id="attendence_date" required="required" /> </div> </div> <div class="col-md-3"> <div class="form-group"> <label class="required" for="emp_name">Resource Name</label> <select name="emp_name" id="emp_name" class="form-control tip select2"> <option value="">Select Resource</option> <?php $statement = $pdo->prepare("SELECT * FROM tbl_user"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $data) { ?> <option value="<?=$data['id']?>"><?=$data['uname']?></option> <?php } ?> </select> </div> </div> <div class="col-md-3"> <div class="form-group"> <label class="required" for="project_name">Project Name</label> <select name="project_name" id="project_name" class="form-control tip select2"> <option value="">Select Project</option> <?php $statement = $pdo->prepare("SELECT * FROM tbl_site"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $data) { ?> <option value="<?=$data['id']?>"><?=$data['site_name']?></option> <?php } ?> </select> <!--<input type="text" name="project_name" placeholder="Enter The Project Name" class="form-control tip" id="project_name" required="required" />--> </div> </div> <!-- <div class="col-md-3"> <div class="form-group"> <label class="required" for="department_name">Department Name</label> <input type="text" name="department_name" placeholder="Enter The Department Name" class="form-control tip" id="department_name" required="required" /> </div> </div>--> <div class="col-md-3"> <div class="form-group"> <label class="required" for="department_name">Department Name</label> <select name="department_name" id="department_name" class="form-control tip select2"> <option value="">Select Department</option> <?php $statement = $pdo->prepare("SELECT * FROM tbl_department where status=1"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $data) { ?> <option value="<?=$data['id']?>"><?=$data['name']?></option> <?php } ?> </select> <!--<input type="text" name="project_name" placeholder="Enter The Project Name" class="form-control tip" id="project_name" required="required" />--> </div> </div> <div class="col-md-3"> <div class="form-group"> <label class="required" for="attendence_type">Attendence Type</label> <select name="attendence_type" id="attendence_type" class="form-control tip select2"> <option value="">Select Attendence</option> <option value="1">Full Day</option> <option value="2">Half a Day</option> </select> </div> </div> <div class="col-md-3"> <div class="form-group"> <label class="optional" for="notes">Notes</label> <textarea name="notes" placeholder="Enter The Notes" class="form-control tip" id="notes"></textarea> </div> </div> <!--<div class="col-md-3"> <div class="form-group"> <label class="required" for="status">Status</label> <select name="status" class="form-control tip select2"> <option value="1">Active</option> <option value="2">In Active</option> </select> </div> </div>--> </div> <div class="form-group" style="text-align:center;"> <input type="submit" name="add_attendence" value="Add Attendence" class="btn btn-success" /> </form> </div> </div> <div class="clearfix"></div> </div> </div> </div> </div> </section> <?php include "footer.php";?>