Admin
13/06/2009, 18:55
/**
* escape_html()
*
* Escape HTML
*
* @param mixed $html
* @return mixed $html
*/
function escape_html($html)
{
return str_replace('\\\'', '\'', addslashes($html));
}
* escape_html()
*
* Escape HTML
*
* @param mixed $html
* @return mixed $html
*/
function escape_html($html)
{
return str_replace('\\\'', '\'', addslashes($html));
}