Zend Framework Certification 100-500 Question # 3 Topic 1 Discussion

Zend Framework Certification 100-500 Question # 3 Topic 1 Discussion

100-500 Exam Topic 1 Question 3 Discussion:
Question #: 3
Topic #: 1

You want to set the form method in post and action to /uc/zend.php when you are using the Zend_Form class. Which of the following code snippets will you use to accomplish the task?


A.

<?php

$form->Zend::setAction('/uc/zend.php')

->Zend::setMethod('post');


B.

<?php

$form->('/uc/zend.php')

->('post');


C.

<?php

echo "<form action=\"/uc/zend.php \" method=POST>";


D.

<?php

$form->setAction('/uc/zend.php')

->setMethod('post');


Get Premium 100-500 Questions

Contribute your Thoughts:


Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.