Advertisement
showtimeiNK

Untitled

May 28th, 2015
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.37 KB | None | 0 0
  1. <?php
  2. /*
  3.  * Brinck Bill
  4.  * T3IF2
  5.  * bribi093@school.lu
  6.  */
  7.  
  8. //Include the config.inc.php file
  9. require_once("config.inc.php");
  10.  
  11. //Check if the user is logged in
  12. if(isset($_SERVER["REMOTE_USER"]) && $_SERVER["REMOTE_USER"] != "") {
  13.     //Call the function getCurrentValueOfSensor and output the return value
  14.     echo functions::getCurrentValueOfSensor($db);
  15. }
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement