php to javascript variable code example
Example 1: javascript php variable
<script type="text/javascript">
var php_var = "<?php echo $php_var; ?>";
</script>
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: php pass a variabele to js
<script>
'var name = <?php echo json_encode($name); ?>;
</script>'
Example 4: how to use javascript variable in php
<script>
var p1 = "success";
</script>
<?php
echo "<script>document.writeln(p1);</script>";
?>
Example 5: 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 6: 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>