Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <?php if(empty($_GET['page'])) {
  2.  
  3. echo ('<div id="newsx">');
  4.  
  5. include ("noticias/news.php");
  6.  
  7. echo ('</div>');
  8.  
  9. } elseif(file_exists($_GET['page'].'.php'))
  10.  
  11. {
  12.  
  13. include ($_GET['page'].'.php');} else
  14.  
  15. { echo '<font color="#FF0000" size="4" face="Verdana, Arial, Helvetica, sans-serif">Erro: P&aacute;gina n&atilde;o encontrada!</font>'; }
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement