Tony, I'm not sure if there is a specific ZEND way to do this, but i have achieved this by setting the action of the form:
<?php print_r($_GET); print_r($_POST); ?> The above is an example of this working, you should then be able to use both GET and POST, notice when you click submit both arrays are set. I know this method works, wether it's "correct" might be a different question. Likewise how this would work using Zend_Form is beyond me, i've just started using it. Although i assume ... wrongly? ... that isPost() simply looks for $_POST and isGet() looks for $_GET -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Creating-edit-delete-forms-when-displaying-tabular-data-structure-in-controller-tp3331368p3331377.html Sent from the Zend Framework mailing list archive at Nabble.com.
