I tried to learn the htmlentities,
But all I got/output isPHP Code:<?php
$str = "A 'quote' is <i>bold</i>";
// Outputs: A 'quote' is <b>bold</b>
echo htmlentities($str);
echo "<p>";
// Outputs: A 'quote' is <b>bold</b>
echo htmlentities($str, ENT_QUOTES);
?>
Iam using php5, is there anything I should enable?Code:A 'quote' is <i>bold</i>
A 'quote' is <i>bold</i>
