Codice PHP:
echo "Stato del contatto: ";
$result2 mysql_query("SELECT is_active FROM newsletter WHERE id=$c");
$row2 mysql_fetch_assoc($result2);

if (
$row2['is_active'] == "1") {echo "Attivo";}
else {echo 
"Non Attivo";} 
Ricorda che un singolo = è un assegnazione cioè assegni un valora ad una variabile

Es. $test = 1; il valore della variabile $test é 1

se devi fare un confronto devi utilizzare ==