Last active
December 28, 2015 08:29
-
-
Save francescoagati/7471686 to your computer and use it in GitHub Desktop.
pratphall and slim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$app = new Slim\Slim(); | |
$app->get('/hello/:name', function ($name) { | |
echo('Hello' . $name); | |
}); | |
$app->run(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Slim = Slim.Slim | |
var app = new Slim.Slim() | |
app.get('/hello/:name', function (name) { | |
echo("Hello" + name) | |
}) | |
app.run() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment