Advertisement
agungpambudi

URI in Code Igniter

Nov 23rd, 2014
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. class Blog extends CI_Controller {
  3.  
  4.     public function index() {
  5.         echo 'Hello World!';
  6.     }
  7.  
  8.     public function comments() {
  9.         echo 'Look at this!';
  10.     }
  11. }
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement