Welcome Guest, Not a member yet? Register   Sign In
How can I pass array as parameter from view to controller when click an anchor tag?
#1

[eluser]Unknown[/eluser]
Like this
Code:
<a id='proceed' href="&lt;?= base_url() ?&gt;index.php/controller_name/action_name/parameter_array">Go</a>
#2

[eluser]cpass78[/eluser]
The only way that 'I'm' aware of to do this is to either pass the data as hidden input fields in a form or use
Code:
$this->session-set_userdata(array('your values'));

*Edit,

Just realized you could do this with jquery also, just disable the click event for the id of the url and trigger a post event instead.
#3

[eluser]nuwanda[/eluser]
An array of data passed via a url is by definition a form submission :-)

If it's only a few parameters then pass them via url segments.




Theme © iAndrew 2016 - Forum software by © MyBB