I have a codeigniter page with url like
example.com/index.php/test/create
I need to add an ID to the url without reloading my page,I was try
window.location.href=window.location.href+'/'+my_id;
But the page was reloaded.is possible to change my url without reloading my page and add the id as my third segment.After a refresh i need to access that value with
$this->uri->segment(3);