Skip to content

Commit d237c0e

Browse files
committed
Add Hello controller
1 parent cebd09f commit d237c0e

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
class Hello extends CI_Controller
4+
{
5+
public function index()
6+
{
7+
echo 'Hello World!';
8+
}
9+
}

0 commit comments

Comments
 (0)