17 lines
239 B
PHP
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>
|