帮我看下这段代码,高手!

帮我看下这段代码,高手!

<?php
$host="localhost";
$username="root";
$password="123456";
$datebase="msg";
$conn=mysql_connect($host,$username,$password);
mysql_select_db($datebase,$conn);
mysql_query("SET NAMES 'GBK'");
$statu=0;
$sql="select * from new_message order by id desc";
$rs=mysql_query($sql);
?>
<table align="center" cellpadding="0" cellspacing="0" border="0">
<tr>
<td>留言</td>
<td>操作</td>
<td>审核</td>
</tr>
<?php
foreach ($rs as $list ){
?>
<tr>
<td><?php echo $list['content']; ?></td>
<td>删除|修改</td>
<td>
<?php
if ($list['statu']==0){
?>
<label for="statu">未通过审核</label>
<?php
}else {
?>
<label for="statu">审核已通过</label>
<?php
}
?>
</td>
</tr>
<?php
}
?>
</table>
我是想用这段代码实现审核功能,请问。有哪些地方要修改,谢谢了哈,急啊!~

这个怎么可以把statu在数据库时的值跟着改变?ID怎么传啊?