tags: php The chars `<`, `>`, and `&` may need to be converted to `<`, `>` and `&` via the html entities function `htmlentities` ```php $a = ""; $b = htmlentities($a); echo $b; # <hello&> ```