| Codice: |
$title = htmlentities(check_words(check_html($title, "nohtml")), ENT_QUOTES);
$description = htmlentities(check_words(check_html($description, "")), ENT_QUOTES); |
| Codice: |
$title = stripslashes(htmlentities(check_words(check_html($title, "nohtml")), ENT_QUOTES));
$description = stripslashes(htmlentities(check_words(check_html($description, "")), ENT_QUOTES)); |
| Codice: |
$title = check_words(check_html($title, "nohtml"));
$text = check_words(check_html($text, "")); |
| Codice: |
$title = stripslashes(check_words(check_html($title, "nohtml")));
$text = stripslashes(check_words(check_html($text, ""))); |