✏️ 正在编辑: change_profile.php
路径:
/home/llpreacharge/public_html/LLPRECHARGE/LinkFile/change_profile.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php $pass = $_POST['pass']; $name = $_POST['name']; $mobile = $_POST['mobile']; $email = $_POST['email']; $state = $_POST['state']; $district=$_POST['district']; $pin=$_POST['pin']; $address=$_POST['address']; $parentId=$_POST['parent']; if($state!=="--Select State--" || $district!=="--Select District--") { $quUpdate="UPDATE user SET Name='$name', Password='$pass', Mobile='$mobile', Mail='$email', State='$state', City='$district', Address='$address', Pincode='$pin', Parent='$parentId' WHERE Userid='$uid'"; if(mysqli_query($con,$quUpdate)) { $respoStatus="SUCCESS"; $respo_msg="Profile has been changed successfully !"; include'../LinkFile/respoPanel.php'; } else { $respoStatus="FAILED"; $respo_msg="Something Error !"; include'../LinkFile/respoPanel.php'; } } else { $respoStatus="FAILED"; $respo_msg="Something Error !"; include'../LinkFile/respoPanel.php'; } ?>
💾 保存文件
← 返回文件管理器