Files
Learn-PHP/index.php
2025-05-29 21:13:33 -04:00

17 lines
239 B
PHP

<?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>