不使用zend_form的zend框架登录表单

时间:2013-02-07 20:35:05

标签: zend-framework

我需要创建登录表单但不使用zend_form, 那么在哪里创建以及如何发布和获取表单字段。?

1 个答案:

答案 0 :(得分:2)

不会使用Stackoverflow来获取其他人的代码。你应该尝试自己,如果你遇到某个特定的部分,你可以来这里寻求帮助。我现在就开始你了

HTML

<form method="post" action="/account/login">
<input type="text" name="email" id="email" value="">
<input type="password" name="password" id="password" value="">
<input type="submit" name="submit" id="submit" value="Submit">
</form>

这指向控制器account和操作login

控制器

<?php
    class AccountController {

          public function loginAction() {
              // Get the request
              $request = $this->getRequest();

              // If the request was a post we process the login request
              if ( $request->isPost() ) {
                        $email      = $request->getParam('email');
                        $password   = $request->getParam('password');
                   // Login procedure       
              }
          }
    }