Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created June 21, 2023 14:29
Show Gist options
  • Save SitesByYogi/e04a3a06f10a376a62a37c37dc8d2a90 to your computer and use it in GitHub Desktop.
Save SitesByYogi/e04a3a06f10a376a62a37c37dc8d2a90 to your computer and use it in GitHub Desktop.
PHP Outputting Data
<?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