Last active
December 21, 2024 21:24
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Demo</title> | |
</head> | |
<body> | |
<h1> | |
<?php | |
echo "Hello, World"; | |
?> | |
</h1> | |
</body> | |
</html> |
<title>Hello World</title>
</h1>
</h1>
<!doctype html>
<title>Demo</title><h1>
<?php
echo "Hello, World ";
?>
</h1>
<p>
<?php
echo "My name is Lawunkhant";
?>
</p>
<h1>
<php echo 'Ready to code' ?>
</h1>
<?php
echo "Hola Mundo";
?>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
<!doctype html>
<title>Demo</title>