Answers for "settinga php string into a js var"

PHP
0

how to assign value of a js variable to a php variable

<script> document.cookie = "myJavascriptVar = " + myJavascriptVar </script>
<?php
     $myPhpVar= $_COOKIE['myJavascriptVar'];
?>
Posted by: Guest on May-04-2020

Browse Popular Code Answers by Language