Skip to content

Instantly share code, notes, and snippets.

@tiffany-taylor
Last active February 3, 2023 17:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tiffany-taylor/180197854eab1b7cf2e53e895977f9d5 to your computer and use it in GitHub Desktop.
Save tiffany-taylor/180197854eab1b7cf2e53e895977f9d5 to your computer and use it in GitHub Desktop.

```

<?php
$name = 'John';
$greeting = <<<HTML
<p>Hello there ${name}, I am clearly some HTML. </p>
HTML;

echo $greeting;

```

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