Shot in the dark, but try using 2 queries.
$query1 = mysql_query("SELECT FROM your_table WHERE burg_reports_status = '1' ");
and
$query2 = mysql_query("SELECT FROM your_table WHERE burg_reports_status <> '1' ");
I am not sure if the <> is valid operator in the query, but try it out.
Then you can return the results in an array from both queries.