PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of stefan   PHP XML Converter   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP XML Converter
Transform Indesign to eBundesanzeiger XML format
Author: By
Last change:
Date: 1 year ago
Size: 441 bytes
 

Contents

Class file image Download
<?php


//helpers
include ('helper/Debughelper.php');

// unsere Klassen einbinden
include('controller/controller.php');
include(
'model/XMLFileModel.php');
include(
'view/view.php');

// $_GET und $_POST zusammenfasen, $_COOKIE interessiert uns nicht.
$request = array_merge($_GET, $_POST);
// Controller erstellen
$controller = new Controller($request);
// Inhalt der Webanwendung ausgeben.
echo $controller->display();

?>