$query = "Select * from servico where ID_SERVICO = $id";
$result = mysql_query($query);
if($row = mysql_fetch_array($result)) {
$nome = $row['NOME'];
if($nome == 'Marketing') {
include ("servicos/marketing.php");
}
if($nome == 'Web-Marketing') {
include ('servicos/webmarketing.php');
}
if($nome == 'Serviços Web') {
include ("servicos/servicosweb.php");
}
if($nome == 'Design Gráfico') {
include ("servicos/designgrafico.php");
}
}
I have this code and can not see error in it, but it gives me this error. I know there should already be a topic of this on the site but I have tried all the ways and nothing. Give me the bool error (false)