simply ..
use mysql_fetch_row or mysql_fetch_array.
when you are using:
while( $row = mysql_fetch_row($rs)) {
// some code
}
you accually pull each row from the database.
that means that if you will have a single row it will still work!
if you look for replacement for mysql_fetch... you may use:
mysql_result .
but i dont think you should cause the line already have been written.
yahel