![]() |
Passing more than one variable from view page to controller in mvc - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: Passing more than one variable from view page to controller in mvc (/showthread.php?tid=60004) |
Passing more than one variable from view page to controller in mvc - El Forum - 12-26-2013 [eluser]rash[/eluser] Hello all Can anyone solve my problem? My problem is i am trying send more than one variable from view page to controller with <a href =""> link,, but it didn't show .... the code is Code: <a href="<?php echo URL;?>dashboard/edit_sp/<?php echo $value['sample_id'];?>&<?php echo $value['board_type'];?>"> Edit </a> in controller page when i am trying to retrieve this it didn't work and the code is : Code: public function edit_sp($arg, $arg1) can anyne help for this.... Thanks Passing more than one variable from view page to controller in mvc - El Forum - 12-26-2013 [eluser]Massaki[/eluser] Change "&" for "/" |