how to access php variables from javascript code example
Example 1: javascript access php variable
//passing PHP variable to JavaScript
var myJSVar = <?php echo json_encode($myPHPVar); ?>;
Example 2: 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 3: how to get a variable from php to javascript
<script type="text/javascript">
var bool = "<?php echo $bool ?>";
var num = <?php echo $num ?>;
var str_num = "<?php echo $num ?>";
var str = "<?php echo $str ?>";
</script>
Example 4: 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 5: how to use php variable in javascript file
alert("color: " + color);