Please HELP Me!!!
I want to directly pass the value of a javascript variable into php variable... I used this code below but it doesn't work.. Can anyone teach me how to do it?? PLEASE.. Thank you so much in advance..
Here's my code:
<script type="text/javascript">
var a = 'This is my value'
<?php $get_value_of_a= ?> a;
</script>
What will be the best solution in order to pass the value of 'a' into '$get_value_of_a' ?? PLEASE HELP Me.. Thank you...