サイト訪問者がアプリケーションにログインせずにフォームに入力した場合、同じ PC から再度サイトにアクセスすると、最後に入力した情報を表示できるはずです。
しかし、私はそれを行う方法がわかりません。それはPHPアプリケーションです。
ありがとうガウラフ
サイト訪問者がアプリケーションにログインせずにフォームに入力した場合、同じ PC から再度サイトにアクセスすると、最後に入力した情報を表示できるはずです。
しかし、私はそれを行う方法がわかりません。それはPHPアプリケーションです。
ありがとうガウラフ
One possible solution is to save the Information that the user provided into a cookie. But cookies are handled by the browser and if the user has confed his browser to delete cookies after closing the info will get lost.
So it depends on the users browser setting if it will work.
(http://php.net/manual/de/function.setcookie.php)
Another Solution for newer Browsers would be to use the DOM Storage as Supercookie. Or directly store the form information to the local storage.
Both are HTML5 features and not properly implemented in all browsers.
ユーザーのIPの記録を追跡できるため、ユーザーがフォームに入力するときに使用できる値
Cookie はおそらく最良のオプションですが、html 5、javascript、およびローカル ストレージを使用してこれを行うことができます。
考えられる解決策の1つは、永続的なCookieを使用することです。永続的なCookieはブラウザーに接続され、セッションが終了し、ブラウザーが再起動します。https://en.wikipedia.org/wiki/HTTP_cookie#Persistent_cookieを参照してください
ユーザーが望む場合、これらのCookieは拒否および削除できます。
情報を Cookie に保存します。ユーザーが同じブラウザから再度アクセスしたときにそれらを読み返し、フォーム要素を事前入力します。