ikonların yüzden bulmakta params url onların yere bağlı olmayan bir dizi url params'ı okumak istiyorum
I have a url for seach with controller/action/paramA/valueparamA/paramB/valueparamB
theses params are optional : I have direct url with search params inside
to read params from url we have to use action(valueparamA, valueparamB) but for me it seems really rigid I want to read parameters by their name, not by their place in url!
Ben farklı adresler gibi olabilir
urlA = controller/action?paramA=valueA
*(or controller/action/paramA/valueA)*
urlB controller/action?paramB=valueB
than I can use with the same action, like we do with a form with $_POST array (it and $_GET[} seems always empty when direct url params) the best would be to have all parameters in an array[paramname=>paramvalue] like in a form
ne istiyorum ETMEYİN tu farklı parametreler possibles için değişik eylemler kullanmaktır! :)
en iyi ben gördüm parametre gibi dizisinde Juste kullanımı idi:
controller/action/array[paramname=>paramvalue]
(http://stackoverflow.com/questions/1763508/passing-arrays-as-url-parameter) but it seems to complicate something basic : just read the normal url parameters like every framework knows :) with
url?nameparam=valueparam&...
hope there is a solution ! I begin tor eally like the light and quick of ci but sometimes (like for extending model) it seems a little "rigid" ;)
herhangi bir fikir için şimdiden düşünüyorum!