Tengo un error en el chooser tengo a 3 usuarios online y no salen porque es eso, si alguien me ayuda, aqui dejo el php
<?
session_start();
session_cache_limiter('nocache,private');
include("configtag. php");
include("conectar. php");
include("colores. php");
?>
<center>
<table width="100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><img src="img/vip_up. png" width="161" height="26" /></td>
</tr>
<tr>
<td background="img/vip_middle. png"><table width="145" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="115"><div align="center"><font face="Arial, Helvetica, sans-serif" size="1"><b>Usuarios Online</b>:
<b><font color="red"><?
include("conectar. php");
$query = mysql_query("SELECT nick FROM usuarios WHERE status=1");
$conectados = mysql_num_rows($query);
echo $conectados;
$nnick = $_SESSION['nnick'];
?>
</font></b> <br />
<br />
<?
while($row = mysql_fetch_array($query)){
echo "<font color=FF0000> ". $row[0] . "</font><br>";
}
?>
</tr>
</table></td>
</tr>
<tr>
<td><img src="img/vip_donw. png" width="161" height="26" /></td>
</tr>
</table>
</center>