04-20-2010, 01:55 AM
[eluser]Suhas nazir[/eluser]
Hi all
I want to know whether there is any method to pass an array through anchor??
Hi all
I want to know whether there is any method to pass an array through anchor??
passing array through Anchor
|
04-20-2010, 01:55 AM
[eluser]Suhas nazir[/eluser]
Hi all I want to know whether there is any method to pass an array through anchor??
04-20-2010, 02:27 AM
[eluser]Phil Sturgeon[/eluser]
Do you mean like the one in the user guide? Or do you mean passing a URI as an array of segments? Both = yes ;-)
04-20-2010, 02:52 AM
[eluser]Suhas nazir[/eluser]
I will make it more clear Suppose my array is like this $n[0]="asas"; $n[1]="asdsad"; is it possible to pass this array n throuhh an anchor????
04-20-2010, 02:53 AM
[eluser]Phil Sturgeon[/eluser]
That is no more clear. Instead of telling me you have an array, now you are showing me you have an array. Explain "pass it through". Code: anchor($n, 'Example'); That would work fine if that's what you mean.
04-20-2010, 02:55 AM
[eluser]Suhas nazir[/eluser]
anchor('contoller/method/parameters'); can i pass this array as one of the parameter.... may be i am asking a foolish question..
04-20-2010, 02:57 AM
[eluser]Phil Sturgeon[/eluser]
You are asking a sensible question but asking it badly. ;-) Code: anchor('controller/method/'.implode('/', $n), 'Example'); |