Codice PHP:
/**
* escape_html()
*
* Escape HTML
*
* @param mixed $html
* @return mixed $html
*/
function escape_html($html)
{
return str_replace('\\\'', '\'', addslashes($html));
}
Codice PHP:
/**
* escape_html()
*
* Escape HTML
*
* @param mixed $html
* @return mixed $html
*/
function escape_html($html)
{
return str_replace('\\\'', '\'', addslashes($html));
}
Segnalibri