view develop/index.php @ 11:3d6fba07bfbd

implemented for topic tag. tagging with topic tag (main tag) indicating each row when export to html.
author Zoe Hong <zhong@mpiwg-berlin.mpg.de>
date Wed, 11 Feb 2015 12:33:59 +0100
parents 54a235d43694
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>