Jump to content

Zend_Form - Preview form


Ravani

Recommended Posts

Hi,

 

I was wondering if anyone here has experience with the best way to preview a form? I want two buttons on the bottom of my form: submit and preview. When a visitor clicks on preview he will be given a preview of the submitted values where he can go back to make changes or click on submit to commit the values.

 

Anyone has an idea to do this?

 

Thanks!

Link to comment
https://forums.phpfreaks.com/topic/225502-zend_form-preview-form/
Share on other sites

$form = new SavePreviewForm();
if($this->getRequest()->isPost()) {
    if($form->isValid($this->getRequest()->getPost()) {
        if($form->isPreviewClicked()) { /* code to handle preview */ }
        if($form->isSaveClicked()) { /* code to handle save */ }
    }
}

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.