I am trying to call php from within index.html. I have created index.html with some a piece of sample code. from the PHP manual
<head>
<title>Example</title>
</head>
<body>
<?php echo "Hi, I'm a PHP script!"; ?>
</body>
when I place this index.html file on my website, the title Example is shown in the explorer title bar, but no output is generated. I can run .php files. My questions is why want this work.
Thanks