OwlCyberSecurity - MANAGER
Edit File: teste01.php
<?php include("includes/config.php"); include("includes/conexao.php"); $pgTitle = filter_input(INPUT_GET, 'pg') ? " Page " . filter_input(INPUT_GET, 'pg') : "" ; $paginacao = new Paginacao($db); $games_list = $paginacao->Registros("SELECT * FROM game WHERE publicado=true AND data_publicar <= NOW() ORDER BY idg DESC"); $linksPaginacao = $paginacao->links(URL_BASE); $pageTitle = _t("Dress Up Games") ." - ". _t("Kawaii Games") . $pgTitle; ?> <!doctype html> <html> <head itemscope itemtype="http://schema.org/WebSite"> <meta charset="utf-8"> <title><?php echo $pageTitle?></title> <meta name="description" content="<?php echo $pgTitle . " " . _t("The best free girls games with the most cute dress up, avatar doll creators and coloring games of your favorite anime and cartoon characters.")?>"> <meta name="author" content="Heglaé Malheiros Maia"> <!--Ajudar a compartilhar no facebook--> <!--Tags para facebook--> <meta property="og:locale" content="en_us"> <meta property="og:url" content="<?= URL_BASE ?>"> <meta property="og:title" content="<?php echo $pageTitle?>"> <meta itemprop='name' property="og:site_name" content="<?php echo _t("Kawaii Games")?>"> <meta property="og:description" content= "<?php echo _t("The best free girls games with the most cute dress up, avatar doll creators and coloring games of your favorite anime and cartoon characters.")?>"> <meta property="og:image" content="//www.kawaiigames.net/kawaii_games_logo.fw.png"> <?php include ("includes/head.php"); ?> </head> <body id="comecoSite"> <!--LOGO E PROPAGANDA CABEÇALHO................................................................................................................................--> <?php include ("includes/topo.php"); ?> <!--REDES SOCIAIS................................................................................................................................--> <div class="container"> <div class="row"> <!--MENU-ESQUERDO................................................................................................................................--> <?php include ("includes/menu-esquerdo.php"); ?> <!--CARROSEL................................................................................................................................--> <?php include ("includes/carrosel.php"); ?> <div class="col-md-10 box-central"> <!--New games.............................................................................................................................--> <h2 class="barra-rosa titulo"><?php echo _t("New Games")?></h2> <div class="text-center" itemscope itemtype="http://schema.org/Game"> <?php foreach ($games_list as $item) { include("includes/game-item.php"); }//fim foreach ?> <!--SCROLL UP--> <a href="#comecoSite" class="scroll"> <i class="glyphicon glyphicon-circle-arrow-up"></i> </a> </div> <!-- PAGINAÇÃO --> <?php echo $linksPaginacao; ?> </div> </div><!---ROW - REDES SOCIAIS--> </div><!---CONTAINER - REDES SOCIAIS--> <!--RODAPÉ................................................................................................................................--> <?php include ("includes/rodape.php"); ?> </body> </html>