Ignore:
Timestamp:
07/20/11 18:05:04 (14 years ago)
Author:
basvannuland
Message:

made some changes to way rdf database is constructed.
Made an interface class to write to db and read from db.
interface returns array with survey information in the same way it gets it from the surveyCreationTool.
TODO, override existing survey when it is modified.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/surveycreation.php

    r24 r26  
    22
    33if (isset($_POST['timeStamp']))
     4{
    45    $timeStamp = $_POST['timeStamp'];
     6       
     7        var_dump($_POST);
     8        echo '<br/><br/>';
     9        $surveyDBI = SurveyDatabaseInterface::getInstance();
     10        $surveyDBI->setSurveyInfo($_POST);
     11        $info = $surveyDBI->getSurveyInfo();
     12        echo '<br/><br/>';
     13        var_dump($info);
     14}
    515else {
    616    $timeStamp = null;
    717}
     18
    819
    920?>
Note: See TracChangeset for help on using the changeset viewer.