Posted by Jerry Stuckle on 04/05/07 22:12
ivan.ilijasic@gmail.com wrote:
> It seems that I'm not getting any values out of GET and POST methods.
> Everything was working properly on previous versions.
>
> Do you know how to get GET (or POST ) values?
>
> I'm using this type of URL
>
> http://localhost/controller/action/id/1
>
> I tried directly to $_GET array, but I'm getting nothing. I tried to
> use Zend_Controller_Request_Http class, but no luck.
>
That's not a GET parameter. That's a URL. A GET parameter would be
something lile http://localhost/controller/action?id=1
Then $_GET['id'] would contain 1.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Navigation:
[Reply to this message]
|