With PHP it's possible to check if a cookie exists. Is there a similar way to check if a HTML5 sessionStorage (webstorage) item exists?
If you mean by sessionStorage the HTML5 web storage (as I understand from the tags in your question), then no. It is not possible to access this data from PHP. It can only be accessed with JavaScript and passed through to PHP with AJAX.
No. PHP is server side language and storage or cache are browser dependent, so it is not possible check storage or cache directly from server.
This worked.
HTML side:
<body onLoad="submitform()">
<form name="myform" method="post" action="example.php">
<input type="text" name = "var" id="var">
</form>
<script type="text/javascript">
function submitform()
{
document.getElementById("var").value = sessionStorage.getItem('var');
document.myform.submit();
}
</script>
PHP side:
echo $_REQUEST['var'];
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With