Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.48 KB | None | 0 0
  1. <?php
  2.     // funkce //
  3.  
  4.     /*
  5.     *   includování stránky
  6.     *
  7.     *   vyhledání souboru
  8.     *   je zadán soubor + existuje = include
  9.     *   není = pracovna
  10.     */
  11.  
  12.     ######################################################
  13.     function includeSubpage($category) {
  14.         $path = "includes/" . $category . ".php";
  15.         if (!empty ($category) && file_exists($path)) {
  16.             include_once $path;
  17.         }
  18.         else {
  19.             include 'includes/pracovna.php';
  20.         }
  21.     }
  22.     ######################################################
  23.  
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement