echo php variable in javascript file code example
Example 1: how to use php variable in javascript file
<?php
$color = "Red";
?>
<script type="text/javascript">var color = "<?= $color ?>";</script>
<script type="text/javascript" src="file.js"></script>
Example 2: how to use php variable in javascript file
alert("color: " + color);