ok
Direktori : /proc/thread-self/root/proc/self/root/home2/selectio/www/y1jobportal.in/admin/ |
Current File : //proc/thread-self/root/proc/self/root/home2/selectio/www/y1jobportal.in/admin/edit-employee.php |
<?php include('header.php'); $id = $_GET['id']; $statement = $pdo->prepare("SELECT * FROM `employee` WHERE id = ?"); $statement->execute([$id]); $query = $statement->fetchAll(PDO::FETCH_ASSOC); $totalData = $statement->rowCount(); ?> <div class="page-wrapper"> <div class="page-content"> <div class="row"> <div class="col-xl-12 mx-auto"> <div class="card"> <div class="card-body"> <form id="add_client_details"> <h6 class="mb-1">Add Employee Details</h6> <div class="row g-3"> <div class="col-12 col-lg-12"> <input type="text" name="ids" value="<?=$_GET['id']?>" /> </div> <div class="col-12 col-lg-6"> <div class="col-md-12"> <label for="input13" class="form-label">First Name</label> <div class="position-relative input-icon"> <input type="text" name="client_first_name" class="form-control" id="input13" placeholder="First Name" value="<?=$query[0]['first_name']?>"> <span class="position-absolute top-50 translate-middle-y"><i class="bx bx-user"></i></span> </div> </div> </div> <div class="col-12 col-lg-6"> <div class="col-md-12"> <label for="input13" class="form-label">Last Name</label> <div class="position-relative input-icon"> <input type="text" name="client_last_name" class="form-control" id="input13" placeholder="Last Name" value="<?=$query[0]['last_name']?>"> <span class="position-absolute top-50 translate-middle-y"><i class="bx bx-user"></i></span> </div> </div> </div> <div class="col-12 col-lg-3"> <label for="PhoneNumber" class="form-label required">Mobile Number</label> <div class="position-relative input-icon"> <input type="text" name="client_mobile_no" class="form-control" id="input15" placeholder="Phone" value="<?=$query[0]['mobile_no']?>"> <span class="position-absolute top-50 translate-middle-y"><i class="bx bx-microphone"></i></span> </div> </div> <div class="col-12 col-lg-5"> <div class="mb-3"> <label class="form-label required">Email</label> <div class="position-relative input-icon"> <input type="text" name="client_email" class="form-control" id="input16" placeholder="Email" value="<?=$query[0]['email']?>" > <span class="position-absolute top-50 translate-middle-y"><i class="bx bx-envelope"></i></span> </div> </div> </div> <div class="col-12 col-lg-4"> <div class="mb-3"> <label class="form-label required">Password</label> <div class="position-relative input-icon"> <input type="password" name="password" class="form-control" id="input17" placeholder="Password" value="<?=$query[0]['password']?>" > <span class="position-absolute top-50 translate-middle-y"><i class="bx bx-lock-alt"></i></span> </div> </div> </div> <div class="col-12 col-lg-4"> <div class="mb-3"> <label class="form-label required">Type</label> <div class="position-relative"> <select name='type' class="form-control" id="input18" > <option <?=($query[0]['type'] == '1' ? "selected":"") ?> value='1'>Employee</option> <option <?=($query[0]['type'] == '2' ? "selected":"") ?> value='2'>Executive</option> </select> <span class="position-absolute top-50 translate-middle-y"></span> </div> </div> </div> <!--stephen starts--> <div class="col-12 col-lg-4"> <label for="Address" class="form-label required">State</label> <select name="state_id" id="state_id" class="form-select select2" style="font-size: 12px;"> <option value="">All State</option> <?php $statement = $pdo->prepare("SELECT * FROM `state` WHERE status=1"); $statement->execute(); $resultss = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($resultss as $result) { ?> <option <?php echo ($query[0]['state'] == $result['id']) ? 'selected' : ''; ?> value="<?=$result['id']?>"><?=$result['state_name']?></option> <?php } ?> </select> </div> <div class="col-12 col-lg-4"> <label for="Address" class="form-label required">District</label> <select name="district_id" id="district_id" class="form-select select2" style="font-size: 12px;"> </select> </div> <div class="col-12 col-lg-4"> <label for="Address" class="form-label required">Allocated City</label> <select multiple name="al_city[]" id="al_city" class="form-select select2" style="font-size: 12px;"> </select> </div> <!--stephen ends--> <div class="col-12 col-lg-5"> <label for="Address" class="form-label required">Address Line 1</label> <input type="text" name="client_address1" class="form-control" id="buyer_mobile_no" placeholder="Address 1"> </div> <div class="col col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12"> <center><button type="submit" name="save" class="btn btn-primary px-5">Save</button></center> </div> </div> </form> </div> </div> </div> </div> </div> </div> <style> .card { border: 0 solid transparent; margin-bottom: 1.5rem; box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%); } .card { --bs-card-spacer-y: 1rem; --bs-card-spacer-x: 1rem; --bs-card-title-spacer-y: 0.5rem; --bs-card-title-color: ; --bs-card-subtitle-color: ; --bs-card-border-width: var(--bs-border-width); --bs-card-border-color: var(--bs-border-color-translucent); --bs-card-border-radius: var(--bs-border-radius); --bs-card-box-shadow: ; --bs-card-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width))); --bs-card-cap-padding-y: 0.5rem; --bs-card-cap-padding-x: 1rem; --bs-card-cap-bg: rgba(var(--bs-body-color-rgb), 0.03); --bs-card-cap-color: ; --bs-card-height: ; --bs-card-color: ; --bs-card-bg: var(--bs-body-bg); --bs-card-img-overlay-padding: 1rem; --bs-card-group-margin: 0.75rem; position: relative; display: flex; flex-direction: column; min-width: 0; height: var(--bs-card-height); word-wrap: break-word; background-color: var(--bs-card-bg); background-clip: border-box; border: var(--bs-card-border-width) solid var(--bs-card-border-color); border-radius: var(--bs-card-border-radius); } </style> <script> $(document).ready(function(){ $(".select2").select2({ containerCssClass: "error", dropdownCssClass: "test" }); //Pickup Address Form Start $( "#add_client_details" ).validate( { rules: { client_first_name: { required: true, minlength: 6 }, client_mobile_no:{ minlength: 10, maxlength: 12 }, client_email: { required: true, email: true }, password: { required: true, minlength: 8 }, client_address1: "required", district_id: "required", state_id: "required", }, messages: { client_first_name: { required: "please enter a client first name", minlength: "enter a client first name must consist of at least 6 characters" }, client_last_name: { required: "please enter a client last name" }, client_mobile_no: { minlength: "your contact alter mobile number must consist of at least 10 digit number", maxlength: "your contact alter mobile number max 12 digit only allowed" }, password: { required: "please enter a password", minlength: "your password must consist of at least 8 digit" }, client_email: "Please enter a valid email address", client_address1: "please enter first address", state_id: "please select state address", district_id: "please select district address", }, submitHandler: function(form) { add_client_details(form); } } ); function add_client_details(form){ console.log("Form Working"); $('#loader').show(); var formData = new FormData(form); $.ajax({ url: 'api/edit_employee_details.php', type: 'post', dataType: 'json', data: formData, cache: false, contentType: false, processData: false, enctype: 'multipart/form-data', success: function (response) { console.log(response); if(response['error']==false){ $('#exampleExtraLargeModal').modal('hide'); $('#add_client_details').trigger("reset"); $('#loader').hide(); success(response['message']); }else{ $('#loader').hide(); warning(response['message']); } } }); } //Pickup Address Form End }); function pro_count_arrenge(){ var counts=2; $('.pro_count').each(function(){ $(this).text(counts) ; counts++; }); } </script> <?php include('footer.php'); ?> <script> $("#state_id").change(function () { get_district(); get_districts(); }); function get_district(){ $('#district_id').empty(); var state_id = $('#state_id').val(); $.ajax({ url: 'api/get-district-api.php', type: 'post', dataType: 'json', data: {type:'get_district',state_id:state_id}, success: function (response) { console.log(response); if(response['error']==false){ var m=''; for(var n=0;n<response['data'].length;n++){ m+='<option value='+response['data'][n]['id']+'>'+response['data'][n]['district_name']+'</option>'; } $('#district_id').append(m); }else{ var m='<option value="">No District Found</option>'; $('#district_id').append(m); } } }); } function get_districts(){ $('#al_city').empty(); var state_id = $('#state_id').val(); $.ajax({ url: 'api/get-district-api.php', type: 'post', dataType: 'json', data: {type:'get_district',state_id:state_id}, success: function (response) { console.log(response); if(response['error']==false){ var m=''; for(var n=0;n<response['data'].length;n++){ m+='<option value='+response['data'][n]['id']+'>'+response['data'][n]['district_name']+'</option>'; } $('#al_city').append(m); }else{ var m='<option value="">No District Found</option>'; $('#al_city').append(m); } } }); } </script>