PHP Classes

File: public/install.php

Recommend this page to a friend!
  Classes of ikhsan   Slim Starter   public/install.php   Download  
File: public/install.php
Role: Application script
Content type: text/plain
Description: install script
Class: Slim Starter
Build MVC Web applications based on Slim framework
Author: By
Last change: Update of public/install.php
Date: 2 months ago
Size: 310 bytes
 

Contents

Class file image Download
<?php
define
('INSTALL', 1);

require
'../app/bootstrap/start.php';

Route::get('/', 'InstallController:index');
Route::post('/db/check', 'InstallController:checkConnection');
Route::post('/db/configure', 'InstallController:writeConfiguration');

Route::get('/finish', 'InstallController:finish');

App::run();