Changes in Dev/trunk/surveycreation.php [29:10]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/surveycreation.php
r29 r10 1 <?php 2 require 'classes/master.php'; 3 4 $savedSurvey = null; 5 6 if (isset($_POST['timeStamp'])) 7 { 8 $timeStamp = $_POST['timeStamp']; 9 10 var_dump($_POST); 11 echo '<br/><br/>'; 12 $surveyDBI = new SurveyDatabaseInterface(); 13 $surveyDBI->setSurveyInfo($_POST); 14 $info = $surveyDBI->getSurveyInfo(); 15 echo '<br/><br/>'; 16 var_dump($info); 17 18 $savedSurvey = Survey::getSurvey($info); 19 } 20 else { 21 $timeStamp = null; 22 } 23 24 ?> 1 <?php require 'classes/master.php'; ?> 25 2 26 3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" … … 35 12 <body> 36 13 <div id="header"> 37 <div id="logo">CPSFacilitator Tool </div>38 </div>14 <div id="logo">CPSFacilitator Tool </div> 15 </div> 39 16 <div id="wrapper"> 40 17 41 18 <div id="content"> 42 19 <?php 43 44 new SurveyCreationTool($savedSurvey, $timeStamp); 20 new SurveyCreationTool(); 45 21 ?> 46 22 </div>
Note: See TracChangeset
for help on using the changeset viewer.