Jump to content

Only select admins


BizzyD

Recommended Posts

Hello, I got an issue with with php + mysql. 

I am trying to make a page where it shows the online admins. But right now, it selects all the users.

How do I change it so it only chooses players that has AdminLevel set to 1 or higher?

 

Code.

<?php session_start();

$con=mysqli_connect("localhost","root","DELETED","DELETED");
if (mysqli_connect_errno())
{
	echo "Failed to connect to MySQL: " . mysqli_connect_error();
	}
	$result = mysqli_query($con,"SELECT * FROM playerdata");
	
while($row = mysqli_fetch_array($result))
{
	echo $row['username'] . " " . $row['online_ig'];
	echo "<br>";
	}

mysqli_close($con);
?>
Link to comment
https://forums.phpfreaks.com/topic/283982-only-select-admins/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.