I'm pretty new to CakePHP, but what I'm reading in the manual isn't
matching up to what's happening in my CakePHP install when it comes to
the param['pass']

Here's an example.

URL: localhost/users/add/?var1=453&var2=test
$this->param['pass'] = Array()
Gives me an empty array.

URL: localhost/users/add/453/test
$this->param['pass'] = Array ( [0] => 453 [1] => test )

According to the manual I should be getting back "var1=453&var2=test"
as a string in the first example.

Is there something I'm missing?

Thanks,
Mark


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake 
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to