How to pass two or more parameters while calling a module in codeigniter HMVC (MX) -



How to pass two or more parameters while calling a module in codeigniter HMVC (MX) -

i'm using hmvc modular extension codeigniter https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc/wiki/home .

call within site view easily

modules::run('modulename/controller/method')

we can pass single parameter like

modules::run('modulename/controller/method',$parameter)

how can pass 2 or more parameters through this?

codeigniter version : 2.1.3

thanks

we can pass 2 or more variables shown below

modules::run('modulename/controller/method',$parameter1,$parameter2,$parameter3)

you can pass more parameters separated comma.

codeigniter codeigniter-2 hmvc

Comments

Popular posts from this blog

javascript - mongodb won't find my schema method in nested container -

Hibernate criteria by a list of natural ids -

ios - Lagging ScrollView with UIWebview inside -