Ignore:
Timestamp:
08/08/11 15:12:46 (14 years ago)
Author:
fpvanagthoven
Message:

Application should now just be RDF-saved. Beginning on DashboardTool?.php.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/applicationcreation.php

    r66 r75  
    44if (is_null($_SESSION['username']))
    55    redirect('index.php');
     6
     7$application = null;
     8
     9/* TODO: Bas! Dit aanpassen zodat application wordt opgeslagen. */
     10if(!empty($_POST))
     11{
     12        $title = $_POST['applicationTitle'];
     13        $description = $_POST['applicationDescription'];
     14        $application = new Application($title, $description);
     15        var_dump($application);
     16}
     17
    618?>
    719<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     
    2234            <div id="content">
    2335                <?php
    24                     new ApplicationCreationTool();
     36                    new ApplicationCreationTool($application);
    2537                ?>
    2638            </div>
Note: See TracChangeset for help on using the changeset viewer.