Guest User

Untitled

a guest
Jul 18th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Zend_Form with setDefaultsFromObject example</title>
  5. </head>
  6. <body>
  7. <?php
  8.  
  9. ini_set('include_path', dirname(__FILE__));
  10. require_once 'Zend/Loader/Autoloader.php';
  11. Zend_Loader_Autoloader::getInstance()->registerNamespace("Example_");
  12. $form = new Example_Form();
  13. $form->setView(new Zend_View());
  14. $form->setDefaultsFromObject(new Example_Customer());
  15. echo $form;
  16. ?>
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment