Ver Mensaje Individual
  #5 (permalink)  
Antiguo 17/07/2013, 12:53
Montes28
 
Fecha de Ingreso: septiembre-2010
Mensajes: 1.853
Antigüedad: 13 años, 7 meses
Puntos: 6
Respuesta: Error en framework SILEX

en web tengo index.php

y en index.php tengo

Código PHP:
Ver original
  1. <?php
  2.  
  3. require_once __DIR__.'/../vendor/autoload.php';
  4.  
  5. $app = new Silex\Application();
  6.  
  7. $app->get('/hello', function() {
  8.     return 'Hello!';
  9. });
  10.  
  11. $app->run();