Answers for "print js php"

9

how to code print in javascript

console.log("print")
//or
alert("Print")
Posted by: Guest on April-07-2020
0

how to use php echo data in javascript

<?php
$php_variable = 'string'; //Define our PHP variable. You can of course get the value of this variable however you need.
?>			
        <script> js_variable_name = "<?php echo $php_variable; ?>";</script>
Posted by: Guest on July-27-2020
0

php print

printf("El número PI vale %+.2f", 3.1416); // +3.14
Posted by: Guest on October-10-2021

Browse Popular Code Answers by Language