My first php file

This commit is contained in:
2025-05-29 21:13:33 -04:00
parent 010634ce37
commit 499a6cd8a4

16
index.php Normal file
View File

@ -0,0 +1,16 @@
<?php
// This is a comment
// echo 'Hello World!';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>My First PHP File</title>
</head>
<body>
<h1><?php echo 'Hello World'; ?></h1>
</body>
</html>