<html>
<body>
<?php
$txt1="Hello World!";
$txt2="What a nice day!";
echo $txt1 . " " . $txt2 . " " . strlen("Hello world!") . " " .
strpos("Hello world!","world");
?>
</body>
</html>
, name it Examples.php and call it with a button thus
<a href="Examples.php">PHP</a>
I just get a blank page.
I would be grateful if someone could tell me what I am doing wrong.
Thanks,
Peter.