Is there anything for when you are retrieving a single record from a db that you can read without having to use the fetch_array? Its only a single record/field so I would assume its still an array.

Do I really have to use ...

PHP Code:
while ($r fetch_array($rs))
{
    
$blah $r['SomeBlahRelatedField'];