Skip to content

Instantly share code, notes, and snippets.

@JeffreyWay
Last active July 7, 2024 12:43
Show Gist options
  • Save JeffreyWay/1e615fd5334023ae44fbd4b23c9b8ef9 to your computer and use it in GitHub Desktop.
Save JeffreyWay/1e615fd5334023ae44fbd4b23c9b8ef9 to your computer and use it in GitHub Desktop.
PHP For Beginners, Episode 3 - Your First PHP Tag https://laracasts.com/series/php-for-beginners-2023-edition/episodes/3
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<h1>
<?php
echo "Hello, World";
?>
</h1>
<p>
<?php
echo "The teach asked me to echo gibberish text within a paragraph tag.";
?>
</p>
</body>
</html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Demo</title>
</head>
<body>
<h1>
<?php
echo "Hello, World";
?>
</h1>
</body>
</html>
@Rofiaziztr
Copy link

<!doctype html>

<title>Demo</title>
<h1>
    <?php
        echo "Hello, My name is Rofi";
    ?>
</h1>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment