[symfony-users] Re: Is it possible to get PHP arrays through Symfony's url_for() helper?

2009-08-31 Thread Sid Bachtiar
> So if I need one variable to hold several values what I should I do? > Is there a way to get a PHP array through an URL when using Symfony? I can answer this part, yes, you can retrieve array through an URL http://myproject.local/module/action?a[]=1&a[]=2 You just retrieve it by $a = $reques

[symfony-users] Re: Is it possible to get PHP arrays through Symfony's url_for() helper?

2009-08-31 Thread Jake Barnes
After a bunch of searches on Google, I found that we could do this: 'uva_status[]=Undergrad student&uva_status[] =Grad Student/Postdoc')) ?> It is hard to find the documentation on this stuff, but there it is. This allows a query string to get passed through to the browser, with getting conver