Hi there, I've installed XAMPP and been on a PHP course. Now the fun begins. Only issue is, I'm falling at the first hurdle.
I've created a file called info.php and saved it in C:\xampp\htdocs. When I view is via http://localhost/info.php, I can see lots of info. This tells me that PHP is running.
However, when I create a file called index.html with the following code within it...
<html>
<head>
<title></title>
</head>
<body>
<h1>It works!</h1>
<?php echo "hello"; ?>
</body>
</html>
... and call it via http://localhost/index.html, all I get is the HTML. No hello.
Anyone able to point me in the right direction please?
DE