Welcome Guest, Not a member yet? Register   Sign In
help with routes
#1

in routes.php i have:

PHP Code:
$route['admin/orders'] = 'admin_orders/index';
$route['admin/orders/(:any)'] = 'admin_orders/index';
$route['admin/orders/getAll'] = 'admin_orders/getAll';
$route['admin/orders/getLast'] = 'admin_orders/getLast';
$route['admin/orders/delete/(:any)'] = 'admin_orders/delete'


in admin_orders.php i have:

PHP Code:
public function delete(){
        
$id $this->uri->segment(4);
         echo 
"ok   $id";
   } 


and in the view:

Code:
<a href="'.site_url("admin").'/orders/delete/3'.'" class="btn btn-info">Delete</a>


and when i press the Delete the app reload the page, and if i try without the /(:any) the function loads, how i can load the function with a parameter?
Reply
#2

(This post was last modified: 07-21-2015, 08:28 PM by pdthinh.)

I think you should move the 2nd route to last.

PHP Code:
$route['admin/orders'] = 'admin_orders/index';
$route['admin/orders/getAll'] = 'admin_orders/getAll';
$route['admin/orders/getLast'] = 'admin_orders/getLast';
$route['admin/orders/delete/(:any)'] = 'admin_orders/delete'; 
$route
['admin/orders/(:any)'] = 'admin_orders/index'// moved to last 
Reply
#3

You should also move the first line to be the last.
Reply
#4

(07-21-2015, 04:34 PM)GoncaloF Wrote: in routes.php i have:


PHP Code:
$route['admin/orders'] = 'admin_orders/index';
$route['admin/orders/(:any)'] = 'admin_orders/index';
$route['admin/orders/getAll'] = 'admin_orders/getAll';
$route['admin/orders/getLast'] = 'admin_orders/getLast';
$route['admin/orders/delete/(:any)'] = 'admin_orders/delete'


in admin_orders.php i have:


PHP Code:
public function delete(){
 
       $id $this->uri->segment(4);
 
        echo "ok   $id";
 
  


and in the view:


Code:
<a href="'.site_url("admin").'/orders/delete/3'.'" class="btn btn-info">Delete</a>


and when i press the Delete the app reload the page, and if i try without the /(:any) the function loads, how i can load the function with a parameter?


Why don't you do it like this:

Code:
$route['admin/orders/delete/(:any)'] = 'admin_orders/delete/$1';

For your delete method:

PHP Code:
public function delete($id){
 
        echo "ok   $id";
 
  

And in your view:

PHP Code:
<a href="'. site_url('admin/orders/delete/') . $id . '" class="btn btn-info">Delete</a
Romanian CodeIgniter Team :: Translations :: Comunity :: Developers
http://www.codeigniter.com.ro
Reply




Theme © iAndrew 2016 - Forum software by © MyBB