Computer >> Computer tutorials >  >> Programming >> PHP

How to pass JavaScript variables to PHP?


You can easily get the JavaScript variable value on the same page in PHP. Try the following codeL.

<script>
   var res = "success";
</script>
<?php
   echo "<script>document.writeln(res);</script>";
?>