Cadastrar Notícias
prepare($sql_noticia);
$query_cadastra->bindValue(':IdNoticia',$IdNot,PDO::PARAM_STR);
$query_cadastra->bindValue(':img',$img,PDO::PARAM_STR);
$query_cadastra->bindValue(':titulo',$titulo,PDO::PARAM_STR);
$query_cadastra->bindValue(':data',$data,PDO::PARAM_STR);
$query_cadastra->bindValue(':texto',$texto,PDO::PARAM_STR);
$query_cadastra->execute();
}catch(PDOexception $error_cadastra){
echo 'Erro ao cadastrar notícia'.$error_cadastra->getMessage(); }
}
}
}
?>