Answers for "get php variable in js file"

PHP
6

javascript access php variable

//passing PHP variable to JavaScript
var myJSVar = <?php echo json_encode($myPHPVar); ?>;
Posted by: Guest on August-05-2019
0

how to use php variable in javascript file

<?php
$bool = false;
$num = 3 + 4;
$str = "A string here";
?>
Posted by: Guest on October-17-2020

Browse Popular Code Answers by Language