06-21-2012, 01:04 AM
[eluser]CodeIgniteMe[/eluser]
You also need a controller "user" where the function "profile" belongs
You also need a controller "user" where the function "profile" belongs
Code:
// User class
class User extends CI_Controller{
// profile function
function profile($id){
// display id value
echo $id;
}
}