如何从数据库中专门调用表属性?

Im trying to do if else using Camp data in table testing_data. did i do this correctly in retrieve the data and calling it in if else..i really newbies in php ..hope you can help me..tq

<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "brindley";

// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
// Check connection
if ($conn->connect_error) {
    die("Connection failed: " . $conn->connect_error);
} 


$sql = "SELECT * FROM testing_data";
$result = $conn->query($sql);
$user = mysqli_fetch_array($result);


if($user["t_month"] === 'Q1')
{
    if($user['t_bbq'] === 'Kambing Golek')
    {
        if($user['t_participant'] =='>=21 to <=40')
        {
            if($user['t_outdoor'] == 'Tiada')
            {
                if($user['t_packages']== 'Pakej 4')
                {
                    echo "YES, People prefer choose packages like this";
                }
                else 
                {
                     echo "NO";
                }
            }
        }
}
?>