PHP htmlspecialchars Yardım lazım

<iframe src="http://www.google.com.tr" scrolling="no" frameborder="0" align="center" height = "90" width = "728" name="test" border="0">
</iframe>
üstteki örnek kodu post ettiriyorum

htmlspecialchars($_POST['icerik'], ENT_QUOTES);
kodu ile kodu çıktısı şu şekılde oluyor

<iframe src=\"http://www.google.com.tr\" scrolling=\"no\" frameborder=\"0\" align=\"center\" height = \"90\" width = \"728\" name=\"test\" border=\"0\"></iframe>
benım istedigim kod şeklı şu halde olcak

Alıntı
&lt;iframe src='http://www.google.com.tr' scrolling='no' frameborder='0' align='center' height = '90' width = '728' name='test' border="0"&gt;
&lt;/iframe&gt;
'&' (ampersand) becomes '&amp;'
'"' (double quote) becomes '&quot;' when ENT_NOQUOTES is not set.
"'" (single quote) becomes ''' (or &apos;) only when ENT_QUOTES is set.
'<' (less than) becomes '&lt;'
'>' (greater than) becomes '&gt;'
< gibi kodları &amp; yapmasını istiyorum