gestion des erreurs pendant l'initialisation
[mtweb] / index.php
1 <?php
2
3   require "mw/mw_app.php";
4   $app = new mw_app("pathes.php");
5
6   if(!$app->init()){
7     $app->show_error();
8     return;
9   }
10
11   if($app->run()) $app->display();