source: Dev/branches/Demo/fbdataselection.php @ 315

Last change on this file since 315 was 207, checked in by cartis, 13 years ago

Got latest classes from trunk & update 05-12-2012

File size: 499 bytes
Line 
1<?php
2require 'classes/master.php'; //should be at top of every page
3
4if (!isset($_SESSION['userUid'])) {
5    redirect("index.php");
6}
7
8if (isset($_SESSION['message'])) {
9    echo $_SESSION['message'];
10    unset($_SESSION['message']);
11}
12?>
13
14<!DOCTYPE html>
15<html>
16    <head><?php   new StyleSheet("aapje"); ?>
17          <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
18          <title>Feedback dataselection</title>
19    </head>
20    <body>
21       
22
23
24       
25    </body>
26</html>
Note: See TracBrowser for help on using the repository browser.