Guest User

Untitled

a guest
May 27th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <?php
  2. include_once("config.php");
  3.  
  4. if(!isset($_GET['action']) or empty($_GET['action'])) $action = 'index'; else $action = trim(htmlspecialchars($_GET['action']));
  5. include($dir.'/header.tpl');
  6.  
  7. $query = "SELECT * FROM `pages` WHERE `page`='$action' LIMIT 1";
  8. $result = mysql_query($query);
  9.  
  10. if(mysql_num_rows($result) == 1) {
  11.  
  12. echo"Да, такая страница в базе есть, скора выдадим ее";
  13.  
  14. $row = mysql_fetch_assoc($result);
  15.  
  16. } else {
  17.  
  18. echo"Простите, но данной странице не существует";
  19. }
  20. include($dir.'/footer.tpl');
  21. ?>
Add Comment
Please, Sign In to add comment