Created
June 21, 2023 14:29
-
-
Save SitesByYogi/e04a3a06f10a376a62a37c37dc8d2a90 to your computer and use it in GitHub Desktop.
PHP Outputting Data
This file contains hidden or 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
<?php | |
$name = "John Doe"; | |
echo "Hello, " . $name . "!"; // Output: Hello, John Doe! | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment