How To Output HTML Tags in PHP - htmlspecialchars() Function
PHP General FunctionsIf you need to display some HTML code on the browser, first you need to convert it into HTML entities. Otherwise, the code will be processed by the PHP. For example, instead of <bold> output, the text itself will become bold.
The htmlspecialchars() Function converts the predefined characters "<" (less than) and ">" (greater than) to HTML entities. The htmlspecialchars() function converts some predefined characters to HTML entities. The predefined characters are:
- & (ampersand) becomes &
- " (double quote) becomes "
- ' (single quote) becomes '
- < (less than) becomes <
- > (greater than) becomes >
<?php
$str = "This is <b>bold</b> text.";
echo htmlspecialchars($str);
?>
The browser will display:
This is <b>bold</b> text.