I have this foreach below that lists results of a Select, I would like to name it according to the number, as I did below in the IF, but it still did not work ..
foreach($result as $row)
{
$segurado[] = $row['SEGURADO'];
$data[] = $row['DATA'];
$status_seguro1 = $row['STATUS_SEGURO'];
if($status_seguro1 == '1') {$status_seguro[] = 'Vistoria';}
if($status_seguro1 == '2') {$status_seguro[] = 'Primeira Parcela';}
if($status_seguro1 == '3') {$status_seguro[] = 'Apólice';}
if($status_seguro1 == '4') {$status_seguro[] = 'Cancelado';}
}