Answers for "print php variable in javascript"

PHP
9

how to get javascript variable value in php

<script type="text/javascript">
   var php_var = "<?php echo $php_var; ?>";
</script>
Posted by: Guest on March-20-2020
0

how to use php echo data in javascript

<?php
$php_variable = 'string'; //Define our PHP variable. You can of course get the value of this variable however you need.
?>			
        <script> js_variable_name = "<?php echo $php_variable; ?>";</script>
Posted by: Guest on July-27-2020

Code answers related to "print php variable in javascript"

Browse Popular Code Answers by Language