Why this is generating fatal error Slim not found.
index.php
<?php
require "Slim/Slim.php";
// create new Slim instance
$app = new Slim();
// add new Route
$app->get("/", function () {
echo "<h1>Hello Slim World</h1>";
});
// run the Slim app
$app->run();
Requested URL
GET : http://localhost/mywebapps/index.php
GET: http://localhost/mywebapps/
My Directory structure on windows
www/mywebapps/
Slim- slim frameworks folder(Having Slim.php and other files also)
index.php - php file
what is i am doing wrong please help me guy's.
I have found the solution by doing the this.
<?php
require "Slim/Slim.php";
\Slim\Slim::registerAutoloader();
// create new Slim instance
$app = new \Slim\Slim();
Use this code after importing Slip.php
use \Slim\Slim AS Slim;
$app = new Slim();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With