is $suspend set equal to something from a the database, if not you can say something like this:
$query = "select * from table";
$result = mysql_query($result) or die ("could not select");
while($row = mysql_fetch_array($result))
{
$suspend = $row['fieldname'];
if ($suspend == "yes")
{
echo "suspend";
}
else
{
echo "no suspend";
}
}