1
0
Fork 0
template/functions/safe-tag.php
2024-04-25 21:55:08 +02:00

7 lines
No EOL
90 B
PHP
Executable file

<?php
function safetag($string) {
return strip_tags(htmlspecialchars($string));
}
?>