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

Save as Private