Skip to content

Instantly share code, notes, and snippets.

@aysesenses
Created July 17, 2020 14:23
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 aysesenses/1c557ae0e93cba90ae8a8e8c9e7f902f to your computer and use it in GitHub Desktop.
Save aysesenses/1c557ae0e93cba90ae8a8e8c9e7f902f to your computer and use it in GitHub Desktop.
<!-- wp:code -->
<pre class="wp-block-code"><code>&lt;php?
$name = $GET&#91;'name'];
?>
&lt;!DOCTYPE html>
&lt;html lang="en">
&lt;head>
&lt;/head>
&lt;body>
&lt;h1>
&lt;php? echo "Hello, " .$GET&#91;'name'];?
>/h1>
//yada
&lt;h1>
&lt;?= "Hello, " .htmlspecialchars($GET&#91;'name']); ?>
/h1>
&lt;/body>
&lt;/html></code></pre>
<!-- /wp:code -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment