How can i print php variable in jquery?
If you are working on php and you need to print your php variable inside the javascript then you can simple get value. you can use "" for get value of php variable. in following example you can see :
Example:
<script type="text/javascript">
var my_var = "<?php echo $my_variable; ?>";
console.log(my_var);
</script>
OR
<script type="text/javascript">
var my_var = <?php echo $my_variable; ?>;
console.log(my_var);
</script>
But, you can use on php file, Not on js file.

Hardik Savani
I'm a full-stack developer, entrepreneur and owner of Aatman Infotech. I live in India and I love to write tutorials and tips that can help to other artisan. I am a big fan of PHP, Laravel, Angular, Vue, Node, Javascript, JQuery, Codeigniter and Bootstrap from the early stage. I believe in Hardworking and Consistency.