Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Note: Function names are case-insensitive, though it is usually good form to call functions as they appear in their declaration.
<a href="test.php" >CLICK</a>
<?
function test() {
echo 'HI!';
}
test();
?>
HI!