David Mintz-3 wrote: > > Just wondering if anyone has any ideas about this, before I consider > writing some Javascript to > suppress the default event and location.href = example.org/param1/value1 > etc >
David, Rather than hack something together in JavaScript, you might consider checking out the Zend_Rest_Route Router. It is very easy to configure and use and you get URLs like this: example.org/resource/1 (routes to showAction) example.org/resource/1/edit (routes to editAction) Your actions are then: editAction (present an edit form) putAction (persist the updated form data) newAction (present a new form) postAction (persist what was passed via the form) getAction (present a representation of the resource given but the :id = 1) deleteAction (explains itself) indexAction (list all available resources) -- Wil Moore III -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/GET-form-submission-pretty-URL-tp2289235p2289487.html Sent from the Zend Framework mailing list archive at Nabble.com.
