I found an solution for it.
The problem is when you use SELECT * From Account You will have sometime an error, like severity 16 .
Example normale:
Code:
?>
- Accounts: <strong>
<?php require 'config.php';
$query = mssql_query("SELECT * FROM Accounts");
$num_rows = mssql_num_rows($query);
echo "$num_rows";?>
Example to solve this issue
Code:
?>
- Accounts: <strong>
<?php require 'config.php';
$query = mssql_query("SELECT AID, UserID FROM Accounts");
$num_rows = mssql_num_rows($query);
echo "$num_rows";?>
To solve the issue with the admin panel, just look to your code and replace the * with the coloms you need
I hope this is helpfull for you