Jump to content

Attaching users id to url structure


RalphLeMouf

Recommended Posts

I am having great trouble figuring out how to attach the users id to the url when on their profile. I have read up on uri segments and routes but still can’t figure out how to make it work.

here is my controller:

 

public function profile() 
{

$this->load->helper('date');
$this->load->library('session');
$session_id = $this->session->userdata['id'];
$this->load->model('account_model');
$user = $this->account_model->user();
$data['user'] = $user;
$user['id'] = $this->uri->segment(4);
$data['profile_icon'] = 'profile';
$data['main_content'] = 'account/profile/'.$user['id'];
$this->load->view('includes/templates/profile_template', $data);

}

 

and here is my routes.php file:

 

 

 




$route['default_controller'] = "home";
$route['404_override'] = '';
//THIS IS FOR THE VIEW I'M TRYING TO ATTACH THE ID TO
$route['profile/([a-z]+)/(\d+)'] = "$1/id_$2";




Thank you in advance

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.