Skip to main content

Command Palette

Search for a command to run...

My first php tag

Updated
1 min read
My first php tag

index.php :

"Hello World" is a string of characters.

A string of characters is text.

echo "Hello World" means prints the text onto the page.

<!doctype html>
<html lang="en">
<head>
    <meta charset="UTF-8">

    <title>Demo</title>
</head>
<body>
<h1>
    <?php
      echo "Hello World"
    ?>
</h1>
</body>
</html>

More from this blog

Untitled Publication

6 posts