How do I access a variable defined in URL when using Zend Framework?
        Posted  
        
            by ben
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by ben
        
        
        
        Published on 2010-06-02T12:51:32Z
        Indexed on 
            2010/06/02
            12:53 UTC
        
        
        Read the original article
        Hit count: 284
        
I had a read of the documentation, but couldn't see an example of how it would be possible to use the variable in traditional PHP style of $_POST['var']
I'm pretty sure my URL is legit:
domain.com/module/controller/action/var/value/
Using the above as an example:
$var didn't work
$_POST['var'] didn't work
How is it done?
© Stack Overflow or respective owner