Changeset 41 for Dev/trunk/index.php
- Timestamp:
- 07/22/11 17:48:14 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/index.php
r38 r41 4 4 $surveys = array(); 5 5 6 $aSurvey = new Survey('71a5c2ee19f172c6f0fe22ec1bfa2083', 'TestGameTest Survey Title'); 7 $bSurvey = new Survey('0e999e625e6c45867e2c64b5228c684d', 'Ultimate Survey'); 8 $cSurvey = new Survey('dceea2af20c3ce6a7175dd0e96e0f2cb', 'Super Survey'); 6 $surveyDBI = new SurveyDatabaseInterface(null); 7 $surveyIDTitles = $surveyDBI->getExistingSurveys(); 9 8 10 array_push($surveys, $aSurvey); 11 array_push($surveys, $bSurvey); 12 array_push($surveys, $cSurvey); 9 10 foreach ($surveyIDTitles as $id => $title) { 11 $survey = new Survey($id, $title); 12 array_push($surveys, $survey); 13 } 13 14 ?> 14 15 … … 23 24 <body> 24 25 <div id="header"> 25 < div id="logo">CPSFacilitator Tool </div>26 <?php new Logo(); ?> 26 27 </div> 27 28
Note: See TracChangeset
for help on using the changeset viewer.