2
Good afternoon guys, I’m having a hard time displaying a "Empty Data" message in my code, follow how I’m doing:
<?php
$dados = Connection::select("select * from clientes where clientnro ='" . $id_cliente . "'");
$conteudo = $dados->fetchObject();
if ($conteudo->nome != NULL) {
foreach ($dados as $conteudo) {
$resultado .= 'Existem clientes - ('$reg['nome']')';
}else{
$resultado .= 'Não Existem clientes';
}
?>
I appreciate the help.
if(!empty($conteudo)){
not always$counteudo->dados
will exist soon the property will generate Warning.– rray