Answers for "assign javascript variable value to php variable value"

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
0

how to change php variable value in javascript

<?php
$php_var = "This is used to change php values to js";
?>
<script>
var js_var = '<?php echo $php_var ;?>';
document.write(js_var);
</script>
Posted by: Guest on June-09-2021

Code answers related to "assign javascript variable value to php variable value"

Browse Popular Code Answers by Language