Changeset 35 for Dev/trunk/classes/Survey.php
- Timestamp:
- 07/21/11 19:01:22 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/classes/Survey.php
r29 r35 36 36 while (isset($info['questionTitle' . $numQ])) 37 37 { 38 $id = $info['questionID' . $numQ]; 38 39 $title = $info['questionTitle' . $numQ]; 39 40 $type = $info['questionType' . $numQ]; 40 41 $description = $info['questionDescription' . $numQ]; 41 42 42 $question = new Question($ title, $type, $description);43 $question = new Question($id, $title, $type, $description); 43 44 44 45 $numA = 1; //number answers
Note: See TracChangeset
for help on using the changeset viewer.