Welcome Guest, Not a member yet? Register   Sign In
help with routes
#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


Messages In This Thread
help with routes - by GoncaloF - 07-21-2015, 04:34 PM
RE: help with routes - by pdthinh - 07-21-2015, 08:27 PM
RE: help with routes - by Avenirer - 07-22-2015, 04:17 AM
RE: help with routes - by Dracula - 07-22-2015, 02:16 PM



Theme © iAndrew 2016 - Forum software by © MyBB