Advertisement
Guest User

nav_admin.php

a guest
Feb 11th, 2013
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.49 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <!-- meta -->
  5. <meta http-equiv="content-type" content="text/html; charset=utf-8" />
  6. <meta http-equiv="Expires" content="Tue, 01 Jan 1980 1:00:00 GMT" />
  7. <meta http-equiv="Pragma" content="no-cache" />
  8.  
  9. <link rel="stylesheet" href="css/ui-lightness/jquery-ui-1.8.22.custom.css">
  10.   <link rel ="stylesheet" type ="text/css" href ="css/style.css">
  11.  
  12.   <script src="js/jquery.js"></script>  
  13.   <script src="js/jquery-ui.js"></script>
  14.  
  15.   <link rel="stylesheet" href="development-bundle/demos.css">
  16.   <style>
  17.     body { font-size: 62.5%; }
  18.     label, input { display:block; }
  19.     input.text { margin-bottom:12px; width:95%; padding: .4em; }
  20.     fieldset { padding:0; border:0; margin-top:25px; }
  21.     h1 { font-size: 1.2em; margin: .6em 0; }
  22.  
  23.     .ui-dialog .ui-state-error { padding: .3em; }
  24.     .validateTips { border: 1px solid transparent; padding: 0.3em; }
  25.   </style>
  26.  
  27.    
  28. <!-- title -->
  29. <title>Report selection </title>
  30. <link rel="shortcut icon" type="image/x-icon" href="images/base.gif" />
  31. </head>
  32. <body>
  33.  
  34. <?php
  35.  
  36. require 'connect_sql.php';
  37.  
  38. //session_start();
  39. $selected_view =  $_POST['env_select'];
  40.  
  41. if ($selected_view == 'h')
  42. include 'rep_admin_h.php';
  43. else if ($selected_view == 'w')
  44. include 'rep_admin_w.php';
  45. else if($selected_view == 'c1')
  46. include 'rep_admin_c1.php';
  47.  
  48.  
  49. ?>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement