call js with php var code example
Example 1: js var to php
<script>
var res = "success";
</script>
<?php
echo "<script>document.writeln(res);</script>";
?>
Example 2: how to use php variable in javascript file
<?php
$bool = false;
$num = 3 + 4;
$str = "A string here";
?>