include ("../funcoes/funcoes.php"); $mySQL = new conexao(); $id = isset($_GET['id']) ? $_GET['id'] : ''; $url = "http://www.administrefacil.com.br" . $_SERVER['REQUEST_URI']; $q_artigos = $mySQL->query("SELECT * FROM artigos WHERE id='$id' and ativo='1'"); $rowArt = $q_artigos->fetch(); $titulo = $rowArt["titulo"]; $descricao = $rowArt["descricao"]; $bodyArtigo = $rowArt["msg"]; $secao = $rowArt["secao"]; $categoria = $rowArt["categoria"]; $autor = $rowArt["autor"]; $images = $rowArt["images"]; $dataArtigo = date('d-m-Y', strtotime($rowArt['data'])); $tags = $rowArt["tags"]; topo_pagina_bt4($titulo, $descricao, $tags, "", "", "","","","",""); ?>