Prueba asi:
Código PHP:
$sqlrep = "select * from tabla where id='$id' and nivel='2'";
$resultn = mysql_query($sqlrep, $link);
$registrosn = mysql_num_rows($resultn);
contador =0;
if ($registrosn > 0) {
while($row = mysql_fetch_array($resultn) && $contador==0) {
echo "VALOR DE ID -->".$row["subid"]."<--<br>";
$contador = $contador +1;
};
};
Saludos.