We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28ce04a commit 8ef1e60Copy full SHA for 8ef1e60
README.md
@@ -1,7 +1,9 @@
1
# php-route
2
+
3
Simple PHP Fast Routing for Small Web Application or Rest API .
4
5
### Features
6
7
1. Easy Deployment
8
2. Fastest Routing
9
3. Parameter Supports
@@ -22,19 +24,19 @@ Simple PHP Fast Routing for Small Web Application or Rest API .
22
24
That means, a route should be like
23
25
26
```php
-Route::get("/", function(){`
27
+Route::get("/", function(){
28
29
echo "This is home page";
30
-`});
31
+});
32
```
33
34
-Route::get("contact", function(){`
35
+Route::get("contact", function(){
36
37
echo "This is contact page";
38
-`});`
39
40
41
42
0 commit comments