print page in php code example
Example 1: print button code in php
<button onClick="window.print()">Print</button>
Example 2: how to code print in javascript
console.log("print")
//or
alert("Print")
Example 3: print html code in php
<?php
echo "<h2>HTML with PHP!</h2>";
echo "Hello world!<br>";
echo "I'm about to learn PHP!<br>";
?>