mirror of
https://github.com/php/presentations.git
synced 2026-03-24 07:32:11 +01:00
7 lines
120 B
PHP
7 lines
120 B
PHP
<?
|
|
$url = 'show.php/php-under-attack/6';
|
|
$tag = "<img src=\"$url?message=Hi\">";
|
|
echo htmlentities($tag);
|
|
echo $tag;
|
|
?>
|