Posts by B. Rayanne • 11 points
1 post
-
1
votes1
answer964
viewsQ: How to remove accents?
<?php $string = $_POST["nome1"]; function removeAcentos($string, $slug = false){ $string = strtolower($string); $ascii['a'] = range(224, 230); $ascii['e'] = range(232, 235); $ascii['i'] =…
phpasked B. Rayanne 11