0

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

4

1 回答 1

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       
              }
          }
    }
于 2013-02-07T21:28:03.613 回答