/home3/vehiclea/public_html/mamacloud/profile.php
<?php
session_start();
$_SESSION['active'] = 'profile';
include 'header.php';
include 'sidelinks.php';
$profData = profile();
if(isset($_POST['update']))
{
$editId = $_POST['editId'];
$mailId = $_POST['mailId'];
$password = $_POST['password'];
$fName = $_POST['firstName'];
$lName = $_POST['lastName'];
$cName = $_POST['companyName'];
$pNo = $_POST['phoneNo'];
$aId = $_POST['aId'];
$pId = $_POST['pId'];
$uId = $_POST['uId'];
$instId = $_POST['instId'];
if ($aId > 0 && $pId == 0 && $uId == 0)
{
$dataUpdate = "UPDATE addAdmin SET companyName = '$cName', firstName = '$fName', lastName = '$lName', password = '$password', phoneNo = '$pNo', updated_date = now() where adminId = '$aId' and mailId = '$mailId'";
} else if ($aId > 0 && $pId > 0 && $uId == 0) {
$dataUpdate = "UPDATE addPartner SET companyName = '$cName', firstName = '$fName', lastName = '$lName', password = '$password', phoneNo = '$pNo', update_date = now() where adminId = '$aId' and partnerId = '$pId' and mailId = '$mailId'";
} else if ($aId > 0 && $pId > 0 && $uId > 0 && $instId == 0){
$dataUpdate = "UPDATE addUser SET firstName = '$fName', lastName = '$lName', password = '$password', phoneNo = '$pNo', updated_date = now() where adminId = '$aId' and partnerId = '$pId' and userId ='$uId' and mailId = '$mailId'";
} else {
$dataUpdate = "UPDATE addSubUser SET firstName = '$fName', lastName = '$lName', password = '$password', phoneNo = '$pNo', update_date = now() where adminId = '$aId' and partnerId = '$pId' and userId ='$uId' and mailId = '$mailId' and instanceId = '$instId' ";
// echo "<script>alert('".$fName.' '.$lName.' '.$password.' '.$pNo.' '.$update_date."')</script>";
// echo "<script>alert('".$dataUpdate."')</script>";
}
if(mysqli_query($conn, $dataUpdate))
{
$userLoginUpdate = "UPDATE userLogins SET password = '$password', update_date = now() where adminId = '$aId' and partnerId = '$pId' and userId ='$uId' and mailId = '$mailId' and instanceId = '$instId'";
mysqli_query($conn, $userLoginUpdate);
echo "<script>alert('Profile Data Updated Successfully...!!!')</script>";
} else {
echo "<script>alert('Profile Data Updated Fail...!!!')</script>";
}
}
?>
<div class="content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12 p-0">
<div class="main-header">
<h4 style="color:#2567b3">UPDATE PROFILE</h4>
<ol class="breadcrumb breadcrumb-title breadcrumb-arrow">
<li class="breadcrumb-item">
<a href="index.php">
<i class="icofont icofont-home"></i>
</a>
</li>
<li class="breadcrumb-item"><a href="#">Components</a></li>
<li class="breadcrumb-item"><a href="addPartner.php">update Profile </a></li>
</ol>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-header">
<h5 class="card-header-text">Update Profile</h5>
</div>
<div class="card-block">
<form method="post" enctype="multipart/form-data">
<?php
$profDataRec = mysqli_fetch_array($profData);
$aId = $profDataRec['adminId'];
$pId = $profDataRec['partnerId'];
$uId = $profDataRec['userId'];
$instId = $profDataRec['instanceId'];
$logmailId = $profDataRec['mailId'];
$loginId = $profDataRec['id'];
$loginType = $profDataRec['type'];
if ($aId > 0 && $pId == 0 && $uId == 0 && $instId == 0) {
$addUserData = mysqli_query($conn,"SELECT * FROM addAdmin where adminId = '$aId'");
} else if ($aId > 0 && $pId > 0 && $uId == 0 && $instId == 0) {
$addUserData = mysqli_query($conn,"SELECT * FROM addPartner where partnerId = '$pId' and adminId = '$aId'");
} else if ($aId > 0 && $pId > 0 && $uId > 0 && $instId == 0) {
$addUserData = mysqli_query($conn,"SELECT * FROM addUser where partnerId = '$pId' and userId = '$uId' and adminId = '$aId'");
} else {
$addUserData = mysqli_query($conn,"SELECT * FROM addSubUser where instanceId = '$instId' and partnerId = '$pId' and userId = '$uId' and adminId = '$aId' and mailId = '$logmailId'");
}
$addUserDataRec = mysqli_fetch_array($addUserData);
?>
<div class="row">
<?php
if ($_SESSION['loginUser'] == 'admin@siimatechnologies.com')
{
?>
<div class="form-group col-lg-12">
<label class="col-form-label form-control-label">E-Mail ID <span style="color:red;">*</span></label>
<input class="form-control" type="text" name="mailId" placeholder="Enter Mail Id" readonly value="<?= $profDataRec['mailId']?>" required>
</div>
<div class="form-group col-lg-12">
<label class="col-form-label form-control-label">Password <span style="color:red;">*</span></label>
<input class="form-control" type="password" name="password" required autocomplete="current-password" value="<?= $profDataRec['password']?>" placeholder="Enter New Password" id="id_password">
<span class="p-viewer"><i class="fa fa-eye" aria-hidden="true" id="togglePassword"></i></span>
</div>
<?php } else { ?>
<input type="hidden" name="aId" value="<?php echo $aId ?>">
<input type="hidden" name="pId" value="<?php echo $pId ?>">
<input type="hidden" name="uId" value="<?php echo $uId ?>">
<input type="hidden" name="instId" value="<?php echo $instId ?>">
<div class="form-group col-lg-4">
<label class="col-form-label form-control-label">E-Mail ID <span style="color:red;">*</span></label>
<input class="form-control" type="text" name="mailId" placeholder="Enter Mail Id" readonly value="<?= $addUserDataRec['mailId']?>" required>
</div>
<div class="form-group col-lg-4">
<label class="col-form-label form-control-label">Password <span style="color:red;">*</span></label>
<input class="form-control" type="password" name="password" required autocomplete="current-password" value="<?= $addUserDataRec['password']?>" placeholder="Enter New Password" id="id_password">
<span class="p-viewer"><i class="fa fa-eye" aria-hidden="true" id="togglePassword"></i></span>
</div>
<div class="form-group col-lg-4">
<label class="col-form-label form-control-label">Firstname <span style="color:red;">*</span></label>
<input class="form-control" type="text" name="firstName" placeholder="Enter Firstname" value="<?= $addUserDataRec['firstName']?>" required>
</div>
<div class="form-group col-lg-4">
<label class="col-form-label form-control-label">Lastname <span style="color:red;">*</span></label>
<input class="form-control" type="text" name="lastName" placeholder="Enter Lastname" value="<?= $addUserDataRec['lastName']?>" required>
</div>
<?php if ($loginType == 'partner' || $loginType == 'admin') {
?>
<div class="form-group col-lg-4">
<label class="col-form-label form-control-label">Company Name <span style="color:red;">*</span></label>
<input class="form-control" type="text" name="companyName" placeholder="Enter Company name" value="<?= $addUserDataRec['companyName']?>">
</div>
<?php } ?>
<div class="form-group col-lg-4">
<label class="col-form-label form-control-label">Phone No <span style="color:red;">*</span></label>
<input class="form-control" type="text" nospace onkeypress="return isNumber(event)" maxlength="10" name="phoneNo" value="<?= $addUserDataRec['phoneNo']?>" placeholder="Enter Phone No" required>
</div>
<?php } ?>
</div>
<div class="form-group">
<input type="hidden" name="editId" value="<?= $addUserDataRec['id']?>">
<center><button class="btn btn-success" name="update" value="submit">Update</button></center>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php' ?>
<script type="text/javascript">
const togglePassword = document.querySelector('#togglePassword');
const password = document.querySelector('#id_password');
togglePassword.addEventListener('click', function (e) {
// toggle the type attribute
const type = password.getAttribute('type') === 'password' ? 'text' : 'password';
password.setAttribute('type', type);
// toggle the eye slash icon
this.classList.toggle('fa-eye-slash');
});
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/css/all.min.css">
<script>
$('.noSpace').keyup(function() {
this.value = this.value.replace(/\s/g,'');
});
function isNumber(evt,ref,len)
{
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? evt.which : evt.keyCode;
if(charCode == 8 || charCode == 9 ){
return true;
}
var ctrlDown = evt.ctrlKey||evt.metaKey // Mac support
if (charCode > 31 && (charCode < 48 || charCode > 57) && charCode != 46 || charCode == 8 || charCode == 37 || charCode == 39 || ( ctrlDown && charCode==86)) {
return false;
}
else if(ref.val().length >= len){
return false;
}
return true;
}
</script>
@LwBee Strong Bypass
Upload File
Create New File