how to write html with php code example
Example 1: inline php in html
<body>
Hello, today is <?php echo date('l, F jS, Y'); ?>.
</body>
Example 2: how to write php in script file
<?php
$phpToJsVars = [
'value1' => 'foo1',
'value2' => 'foo2'
];
?>