Javascript variable inside PHP code example
Example 1: using js variable in php
<script type="text/javascript">
var abc= 'this is text';
<?php $abc = "<script>document.write(abc)</script>"?>
</script>
<?php echo $abc;?>
Example 2: how to use php variable in javascript file
alert("color: " + color);