I’ve debugged my PHP code and found the error in this exact statement (it does connect to the DB, and works if I remove this code). But right now It just produces a blank page.
while($row = $result->fetch_assoc()) {
echo "<br> ID: ". $row["id"]. " - Selected Username: " . $row["username"]. " " E-mail " . $row["email"]. " " Password: " . $row["password"]. " " Referral: " . $row["referral"]. " IP: " " . $row["ip"]. " Request Date: " " . $row["date"] . "<br>";
}
Help please! Thanks!