Today, We want to share with you how to store javascript value in php variable.In this post we will show you passing javascript variable to php in the same page, hear for how to get javascript function return value in php variable? we will give you demo and example for implement.In this post, we will learn about How To Get Javascript Variable Value In Php In Same Page? with an example.
how to use js variable in php?
var val = "<?php echo $val ?>";
Example 1: js var to php
<script> var results = "good luck pakainfo.com"; </script> <?php echo "<script>document.writeln(results);</script>"; ?>
Example 2: using js variable in php
<script type="text/javascript"> var results= 'Welcome to Pakainfo'; <?php $results = "<script>document.write(results)</script>"?> </script> <?php echo $results;?>
Example PHP Variables to JavaScript
Example 3:
<?php $bool = false; $num = 3 + 4; $results = "Welcome to Pakainfo"; ?>
<script type="text/javascript"> // boolean results "" if false, "1" if true var bool = "<?php echo $bool ?>"; // numeric value, both with and without quotes var num = <?php echo $num ?>; // 7 var str_num = "<?php echo $num ?>"; // "7" (a string) var str = "<?php echo $results ?>"; // "Welcome to Pakainfo" </script>
I hope you get an idea about how to convert javascript variable to php variable?.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.