✏️ 正在编辑: add_lapu.php
路径:
/home/llpreacharge/public_html/LLPRECHARGE/Admin/add_lapu.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php include'session.php'; include'../connection.php'; include'../functions.php'; ?> <html> <head> <title>Add Lapu</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:#f7f7f7; width:50%; height:500px; float:left; text-align:center; padding-top:20px; } .div1 i{ font-size:300px; color:#6b5127; margin:0 10px; } .div1 input, select{ width:90%; height:40px; margin:5px 10px; padding:2px 10px; border-radius:5px; border:1px solid #6b5127; font-size:16px; } input[type=submit]{ background:#6b5127; color:white; font-size:20px; transition:1s; width:150px; float:right; margin-right:5%; } input[type=submit]:hover{ background:white; color:#6b5127; border:1px solid #6b5127; cursor:pointer; transition:1s; } @media(max-width:768px) { .div1{ width:100%; height:auto; } .nav,.container{ height:auto; } } </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'; $lapuNo = ''; if(isset($_POST['submit'])) { $SellerId = $_POST['Seller']; $SellerFirmId = $_POST['SellerFirm']; $LapuNo = $_POST['LapuNo']; $LapuType = $_POST['LapuType']; $LapuBal = $_POST['LapuBal']; $quDupLapu="SELECT * FROM seller_lapu WHERE LapuNo='$lapuNo' AND LapuType='$LapuType'"; $reDupLapu=mysqli_query($con,$quDupLapu); $countDupLapu=mysqli_num_rows($reDupLapu); if($SellerId=="--Select Seller--") { echo "<div class='msg-div'> <form method='post'> <h3>Select Seller Please !</h3><br> <i class='fa fa-ban' aria-hidden='true' id='NotokIcon'></i><br><br> <button type='submit' class='btnPopup'>OK</button><br><br> </form> </div>"; } elseif($SellerFirmId=="--Select Seller Firm--") { echo "<div class='msg-div'> <form method='post'> <h3>Select Seller Firm Please !</h3><br> <i class='fa fa-ban' aria-hidden='true' id='NotokIcon'></i><br><br> <button type='submit' class='btnPopup'>OK</button><br><br> </form> </div>"; } elseif(empty($LapuNo)) { echo "<div class='msg-div'> <form method='post'> <h3>Enter Lapu Number Please !</h3><br> <i class='fa fa-ban' aria-hidden='true' id='NotokIcon'></i><br><br> <button type='submit' class='btnPopup'>OK</button><br><br> </form> </div>"; } elseif($countDupLapu>0) { echo "<div class='msg-div'> <form method='post'> <h3>Lapu Number Already Exists !</h3><br> <i class='fa fa-ban' aria-hidden='true' id='NotokIcon'></i><br><br> <button type='submit' class='btnPopup'>OK</button><br><br> </form> </div>"; } else { $quAddLapu="INSERT INTO seller_lapu (Date,Time,SellerId,FirmId,LapuNo,LapuType,LapuBal) VALUES ('$date','$time','$SellerId','$SellerFirmId','$LapuNo','$LapuType','$LapuBal')"; if(mysqli_query($con,$quAddLapu)) { echo "<div class='msg-div'> <form method='post'> <h3>Lapu Added 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>"; } } } ?> <div class="content"> <div class="head"> <div class="title"><p>Add Lapu :-</p></div> <div class="msg"><marquee><?php include'../msg.php'; ?></marquee></msg> </div><hr> <div class="data-content"> <div class="div1"> <form method="post"> <select name="Seller" id="SellerId2" onchange="getFirmBySellerId('--Select Firm--')"> <option>--Select Seller--</option> <?php $quSeller="SELECT Id, Name, City FROM Seller WHERE Status='ACTIVE' ORDER By Name"; $reSeller=mysqli_query($con,$quSeller); while($dataSeller=mysqli_fetch_array($reSeller)) { echo "<option value='".$dataSeller['Id']."'>".$dataSeller['Name']." - ".$dataSeller['City']."</option>"; } ?> </select> <select name="SellerFirm" id="FirmPlace2"> <option>--Select Firm--</option> </select> <input type="text" name="LapuNo" placeholder="Enter Lapu Number..." > <select name="LapuType"> <option>PREPAID</option> <option>DTH</option> <option>MONEY</option> <option>LITE</option> </select> <input type="number" name="LapuBal" placeholder="Enter Lapu Bal..." > <input type="submit" name="submit" value="Submit" onclick='showLoader()'> </form> </div> </div> </div> </div> <?php require'footer.php'; ?> </body> </html>
💾 保存文件
← 返回文件管理器