Answers for "how to get javascript variable inside php"

PHP
3

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;?>
Posted by: Guest on June-10-2020
2

how to use javascript variable in php

<script>
var p1 = "success";
</script>

<?php
echo "<script>document.writeln(p1);</script>";
?>
Posted by: Guest on August-17-2020

Code answers related to "how to get javascript variable inside php"

Browse Popular Code Answers by Language