✏️ 正在编辑: SetComm.php
路径:
/home/llpreacharge/public_html/LLPRECHARGE/Admin/SetComm.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php include'../session.php'; include'../connection.php'; include'../functions.php'; $usrId=$_GET['usrId']; $UsrData=getUser($usrId); $UsrName=$UsrData['Name']; $UsrParentId=$UsrData['Parent']; $ParentName=getName($UsrParentId); if($UsrData=="API") { $opType="Type='ALL' OR Type='API'"; } else { $opType="Type='ALL'"; } $quUpOp="SELECT * FROM operator WHERE $opType"; $reUpOp=mysqli_query($con,$quUpOp); while($dataUpOp=mysqli_fetch_array($reUpOp)) { $opName=$dataUpOp['Name']; $opCode=$dataUpOp['Id']; $quDup="SELECT OpCode FROM comm_slab WHERE OpCode='$opCode' AND Userid='$usrId'"; $reDup=mysqli_query($con,$quDup); $numDup=mysqli_num_rows($reDup); if($numDup<1) { $quInsert="INSERT INTO comm_slab (Userid,OpName,OpCode) VALUES ('$usrId','$opName','$opCode')"; mysqli_query($con,$quInsert); } } ?> <html> <head> <title>Set Comm Single User</title> <!-- Required meta tags --> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="icon" href="images/logo.png" type="image/gif" sizes="16x16"> <!-- Admin CSS File Link --> <link rel="stylesheet" href="css/style.css"> <!-- User JAVA SCRIPT File Link --> <script type="text/javascript" src="js/script.js"></script> <!-- Font Awesome Icone --> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"> <style> .div1{ background:; width:98%; margin:1%; padding:10px; } .div1 input, .div1 select{ height:35px; width:200px; font-size:18px; padding:2px 10px; border-radius:5px; border:solid #6b5127 1px; overflow:hidden; margin:10px 10px 0 10px; } input[type=submit]{ background:#6b5127; color:white; cursor:pointer; transition:1s; } input[type=submit]:hover{ background:white; color:#883333; border:solid #6b5127 1px; transition:1s; } .div2{ background:#f7f7f7; width:100%; float:left; text-align:center; padding:0 10px; overflow:auto; } .div2 table{ width:96%; text-align:center; font-size:16px; border-collapse:collapse; padding:2px 10px; margin:2%; } table th{ background:#6b5127; color:white; height:40px; border:solid white 1px; padding:2px 5px; } table td{ background:white; height:40px; border:solid black 1px; padding:2px 5px; } #inpDataList{display:none;} #commInp{width:60px; height:25px; padding:1px 4px; font-size:16px; text-align:center;} .fa-check, .fa-ban{font-size:20px;} @media(max-width:768px) { .div1{ background:; width:100%; height:auto; margin:10px 0 0 0; padding:0; text-align:center; } .div1 input, .div1 select{ width:90%; margin:10px; } .div2{ width:100%; margin:10px 0 0 0; padding:0px; text-align:center; } } </style> <link rel="stylesheet" href="css/mediaStyle.css"> </head> <body> <!--Header Divison--> <?php require'header.php'; ?> <!--Container Division--> <div class="container"> <?php include'menu.php'; ?> <div class="content"> <div class="head"> <div class="title"><p>Commission Set For :-</p></div> <div class="msg"><marquee><?php include'../msg.php'; ?></marquee></msg> </div><hr> <div class="data-content"> <div class="div1"> <h2><?php echo $UsrName; ?></h2><br> <?php if(isset($_POST['submit'])) { $quUpdateComm="UPDATE comm_slab SET UserComm='$CommValue' WHERE Userid='$usrId' AND OpCode='$opCode'"; mysqli_query($con,$quUpdateComm); echo "<div class='msg-div'> <form method='post'> <h3>Commission Set Successfully !</h3><br> <i class='fa fa-check-circle' aria-hidden='true' id='okIcon'></i><br><br> <button type='submit' class='btnPopup'>OK</button><br><br> </form> </div>"; } ?> <form method="post"> <input type="submit" name="submit" value="Set Commission" onclick='showLoader()'> </div> <div class="div2" id="downlinePlace"> <table cellpadding="20" border="2"> <tr> <th>Op Code</th> <th>Op Name</th> <th>Parent Comm.</th> <th>User Comm</th> <th>Circle</th> <th>R_Offer</th> <th>Allow_Amt</th> <th>Block_Amt</th> <th>Status</th> </tr> <?php $sl=0; $quUsrComm="SELECT * FROM comm_slab WHERE Userid='$usrId'"; $reUsrComm=mysqli_query($con,$quUsrComm); while($dataUsrComm=mysqli_fetch_array($reUsrComm)) { $OpCode=$dataUsrComm['OpCode']; $usrComm=$dataUsrComm['UserComm']; $quParentComm="SELECT UserComm FROM CommSlab WHERE Userid='$UsrParentId' AND OpCode='$OpCode'"; if($reParentComm=mysqli_query($con,$quParentComm)) { $dataParentComm=mysqli_fetch_array($reParentComm); $parentComm=$dataParentComm['UserComm']; } echo "<tr>"; echo "<td>".$dataUsrComm['OpCode']."</td>"; echo "<td>".$dataUsrComm['OpName']."</td>"; echo "<td>".$parentComm."</td>"; echo "<td><input type='number' id='commInp' value='".$usrComm."' name='".$OpCode."' step='0.01' target='_blank'></td>"; echo "<td>".$dataUsrComm['Circle']."</td>"; echo "<td>".$dataUsrComm['R_Offer']."</td>"; echo "<td>".$dataUsrComm['Allow_Amt']."</td>"; echo "<td>".$dataUsrComm['Block_Amt']."</td>"; echo "<td>".$dataUsrComm['Status']."</td>"; echo "</tr>"; } ?> </table> </div> </form> </div> </div> </div> <?php require'footer.php'; ?> </body> </html>
💾 保存文件
← 返回文件管理器