ok
Direktori : /home2/selectio/public_html/obnovit-tracking/ |
Current File : /home2/selectio/public_html/obnovit-tracking/attendance-add-new.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){ $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>Bulk 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-2"> <div class="form-group"> <label class="required" for="emp_name">Department Name</label> <select name="department_name" id="department_name" class="form-control tip select2"> <option value="">All</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> </div> </div> <div class="col-md-2"> <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-2"> <div class="form-group"> <label class="required" for="department_name">Employee Name</label> <select name="employee_name" id="employee_name" class="form-control tip select2"> <option value="">Select Employee</option> <?php $statement = $pdo->prepare("SELECT * FROM tbl_user where status=1"); $statement->execute(); $result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($result as $data) { ?> <option value="<?=$data['id']?>"><?=$data['uname']?></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-2"> <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-2"> <div class="form-group" style="margin-top:25px;"> <input type="submit" name="add_attendence" value="Filter" class="btn btn-success" /> </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> <table style="width:100%;border:1px solid;"> <tr style="border:1px solid;padding:10px;"> <th style="width:10%;padding:10px;">S.No</th> <th style="width:30%;padding:10px;">Employee Name</th> <th style="width:30%;padding:10px;">Project Name</th> <th style="width:30%;padding:10px;">Attendance</th> </tr> <tr style="border:1px solid;padding:10px;"> <td style="width:10%;padding:5px;">1</td> <td style="width:30%;padding:5px;">Ganesan</td> <td style="width:30%;padding:5px;">Test</td> <td style="width:30%;padding:5px;">Full Day</td> </tr> <tr style="border:1px solid;padding:10px;"> <td style="width:10%;padding:5px;">2</td> <td style="width:30%;padding:5px;">Sabari</td> <td style="width:30%;padding:5px;">Test 2</td> <td style="width:30%;padding:5px;">Full Day</td> </tr> <tr style="border:1px solid;padding:10px;"> <td style="width:10%;padding:5px;">3</td> <td style="width:30%;padding:5px;">Venkatesan</td> <td style="width:30%;padding:5px;">Test 3</td> <td style="width:30%;padding:5px;">Full Day</td> </tr> <tr style="border:1px solid;padding:10px;"> <td style="width:10%;padding:5px;">4</td> <td style="width:30%;padding:5px;">Musthafa</td> <td style="width:30%;padding:5px;">Test 4</td> <td style="width:30%;padding:5px;">Half Day</td> </tr> </table> <br> <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";?>