无法回应正确的结果。 PHP / MySQL的

I want to make a code that check if a value in an exact column is equal to an 'neodobren', and if there is such value in the column to echo out the button 'Add Member' and Yes for each value. I've tried to do the following and it is not echoing the Yes: I have the following MySQL table content:

UID Name    Phone   Email   SchoolGymnasium City    Password    Status  
1                                                               neodobren
2                                                               neodobren

and I have the following PHP code inside the HTML index page:

$con = mysql_connect("localhost","****","****");
mysql_query("SET NAMES UTF8");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("***", $con);
include("../../sql.php");
session_start();
$zaqvki = mysql_query("SELECT * FROM Directors WHERE Status='neodobren' LIMIT 1");
            if(mysql_num_rows($zaqvki) > 0) {
echo '<div align="right"><a href="add/director/" class="btn add-project">Add Member</a></div><br>';

        // display data in table


        // loop through results of database query, displaying them in the table
        while($row = mysql_fetch_array($zaqvki)) {  //$zaqvki was $result, before a guy comment me this...

                echo "Yes"; 
        } }
         else { 
                echo "No";
                }

It is showing only the button add member, and not showing the Yes, which must be echo-ed.

Use mysql_fetch_assoc to get an associative array and make a comparison on each row of a certain column:

while($row = mysql_fetch_assoc($result)) 
{
    if($row['Status'] === 'neodobren')
        echo "Yes";
    else
        echo "No";
}