Welcome Guest, Not a member yet? Register   Sign In
Need help about path
#1

My CI project
127.0.0.1/CI
The path is CI/
When URL 127.0.0.1/CI /show/1
The path is CI/show
but I want it still CI/

routes.php
$route['default_controller'] = 'welcome';
$route['wish/(:num)'] = 'welcome/wish/$1';

Welcome.php
class Welcome extends CI_Controller {
public function index()
{
$this->load->view('index.html');
}
public function show($a){
$this->load->helper('url');
$data['title'] = 'help';
$data['id'] = $a;
$this->load->view('page',$data);
}
}
Reply


Messages In This Thread
Need help about path - by 5987crazydog - 07-31-2017, 02:29 AM
RE: Need help about path - by Wouter60 - 07-31-2017, 11:13 AM



Theme © iAndrew 2016 - Forum software by © MyBB