Hey guys, I have a php script which allows the user to view the list of users on the website:
<?php
$con = mysql_connect("localhost","User","Pass");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$query="SELECT * FROM users ORDER BY `Username`"; // query string stored in a...