0

我已经创建了一个登录表单,带有用户名和密码。当我开始输入用户名时假设我输入了第一个字母“a”,那么文本框下方出现了很多以“a”开头的用户名,我该如何清除这些数据。我发现我们可以通过使用浏览器设置来清除,比如去工具->清除浏览数据->删除cookies,清空缓存,但我想知道是否有任何方法可以使用编程找到解决方案。

如果您确认我找到的解决方案是正确还是错误,我会很高兴(这个(工具->清除浏览数据->删除cookies,清空缓存))。

我从编程论坛找到了一个解决方案,我很想知道上述解决方案

<?php
// Initialize the session.
// If you are using session_name("something"), don't forget it now!
session_start();

// Unset all of the session variables.
$_SESSION = array();

// If it's desired to kill the session, also delete the session cookie.
// Note: This will destroy the session, and not just the session data!
if (ini_get("session.use_cookies")) {
$params = session_get_cookie_params();
setcookie(session_name(), '', time() - 42000,
$params["path"], $params["domain"],
$params["secure"], $params["httponly"]
);
}

// Finally, destroy the session.
session_destroy();
?>
4

2 回答 2

3
<input type="text" name="foo" autocomplete="off" />

只需要关闭浏览器的自动完成功能!!!就是这样

参考这个--> autocomplete="off" 与所有现代浏览器兼容吗?

于 2013-06-25T11:37:14.550 回答
0

autocomplete输入文本的属性设置为off:-

<input type="text" autocomplete="off" ............ />
于 2013-06-25T11:47:22.623 回答