PHP Compiler
<!DOCTYPE html> <html> <body> <?php $str = "This is <u> underline </u>"; echo htmlspecialchars_decode($str) . "<br>"; ?> </body> </html>
OUTPUT
This is underline.
×

Save as Private