view develop/index.php @ 10:54a235d43694

add topic choosing in the TaggingText page
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Tue, 10 Feb 2015 16:20:29 +0100
parents da10158c6d0a
children e82ca7375e93
line wrap: on
line source


<html>
<head>
<title></title>
<script src="../../js/jquery-1.10.2.min.js"></script>

<!-- Bootstrap -->
<!-- <link href="../../css/bootstrap.min.css" rel="stylesheet">
-->
<script src="../../js/bootstrap.min.js"></script>



<script src="../../js/taggingtext.js"></script>
</head>
<body>
<?php
header("Content-Type: text/html;charset=utf-8");

// system configiration
include_once('config/Lib_mb_utf8.php');
include_once('config/config.php');

// require the general classes
require("classes/loader.php");
require("classes/basecontroller.php");
require("classes/basemodel.php");

// require the model classes
require("models/home.php");
require("models/extractapp.php");

// require the controller classes
require("controllers/home.php");
require("controllers/extractapp.php");


// create the controller and execute the action
$loader = new Loader($_GET, $_POST);

$controller = $loader->CreateController();
$controller->ExecuteAction();


?>

</body>

</html>