-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·18 lines (17 loc) · 986 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/**
* Andrés Ignacio Martínez Soto
* Coco-PHP
* License: Copyright (c) 2010-2012 Andrés Ignacio Martínez Soto
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
session_start();
error_reporting(E_ALL);
ini_set('max_execution_time','60');
require_once "framework/bootstrap.php";
bootstrap::getInstance();
$frontController = new FW_FrontController("app");
$frontController->render();
?>