I was wondering how I could compare a value/varchar in my database to a string in my own PHP script. Below is a picture of my database if it helps and I just want to compare the value inside the ThunderOrNot column (ID = 1) to a string of "Thunder". Neither of my bottom 2 'if' statements work. What am I doing wrong? Thanks!

<?php
$link = mysqli_connect('.....', '.....', '.....', '.....');
$query = "select * from thunderDemo";
$result = mysqli_query($link, $query);
while($row = mysqli_fetch_array($result))
{
echo $row["ThunderOrNot"];
}
if($row[ThunderOrNot] == 'Thunder')
{
echo "The Value equals Thunder";
}
if($row == 'Thunder')
{
echo "The Value equals Thunder";
}
mysqli_close($link);
?>
$row["ThunderOrNot"]"E_NOTICE : type 8 -- Use of undefined constant ThunderOrNot - assumed 'ThunderOrNot' The Value equals Thunder"