我有index.php
并且我有一个登录表单:
<form method=post action="login.php" id="login">
<input type="text" size="16" maxlength="30" name="login" id="login_user" />
<input type="password" name="pass" id="login_pass"/>
<input name="msubmit" type="submit" value="Login" />
</form>
如何确保通过安全线路处理表单?
我必须添加https://
吗?
<form method=post action="https://test.com/login.php" id="login"
有任何想法吗?
谢谢。