Changeset 75 for Dev/trunk/applicationcreation.php
- Timestamp:
- 08/08/11 15:12:46 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Dev/trunk/applicationcreation.php
r66 r75 4 4 if (is_null($_SESSION['username'])) 5 5 redirect('index.php'); 6 7 $application = null; 8 9 /* TODO: Bas! Dit aanpassen zodat application wordt opgeslagen. */ 10 if(!empty($_POST)) 11 { 12 $title = $_POST['applicationTitle']; 13 $description = $_POST['applicationDescription']; 14 $application = new Application($title, $description); 15 var_dump($application); 16 } 17 6 18 ?> 7 19 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" … … 22 34 <div id="content"> 23 35 <?php 24 new ApplicationCreationTool( );36 new ApplicationCreationTool($application); 25 37 ?> 26 38 </div>
Note: See TracChangeset
for help on using the changeset viewer.