Hi guys,
I have a problem with php.
In my public_html directory, if I have a file named "index.php": <?php echo "something"; ?>, it works perfectly.
But in the same directory, if the file is "index.html":
<html>
<head>
<title> hello </title>
</head>
<body>
<?php echo "something"; ?>
</body>...