Good afternoon,
So I met a problem, I can't display PHP file results in HTML.
As example I have php file named hi.php
that contains code like this:
<?PHP
$hi="Hello!";
echo "$hi";
?>
And I have index.html
that contains body like this:
<!DOCTYPE html>
<html>
<body>
<?php include "taskai.php" ?>
</body>
</html>
And I get a blank page... No results displayed from hi.php
. I'm working on localhost, xampp. May this be the problem, or I have something wrong?