Advertisement
JonneOpettaja

show_1.php

Jul 26th, 2019
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. <?php require_once('../../../private/initialize.php');
  2.  
  3.  $page_title = 'View';
  4.  include(SHARED_PATH . '/staff_header.php');
  5.  
  6. $id = $_GET['id'] ?? '1';
  7.  ?>
  8.  
  9. <div id="content">
  10.     <a class="back-link" href="<?php echo url_for('/staff/subjects/index.php'); ?>">&laquo; Back to List </a>
  11.  
  12.     <div class="page show">
  13.         Page ID: <?php echo h($id); ?>
  14.     </div>
  15.  
  16. </div>
  17.  
  18.  
  19. <?php include(SHARED_PATH . '/staff_footer.php'); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement