How do I display error messages in a variable, for example: You have run the code all right, there you have the first message:
if($count==1)
{
// PRIMEIRA MENSAGEM
$change_profile_msg[] = "<div class='alert alert-success'>
<button type='button' class='close' data-dismiss='alert'>×</button>
<strong>Sucesso!</strong> Perfil atualizado.
</div>";
}
else
{
$change_profile_msg[] = "<div class='alert alert-danger'>
<button type='button' class='close' data-dismiss='alert'>×</button>
<strong>Erro ao atualizar!</strong> Não foi possível atualizar o usuario.
</div>";
}
There where I want to display the message:
$main_content .= ' EXIBIR MENSAGEM AQUI DENTRO APOS TUDO OCORRER BEM OU MAL NO SUBMIT DO FORMULARIO ';
It would be something like:
foreach($change_profile_msgs $change_profile_msg) {
$main_content .= ''.$change_profile_msg;
}
something to display the message ?