
Character encoding to UTF-8
header('Content-Type: text/html; charset=utf-8');ini_set("default_charset", "UTF-8");mb_internal_encoding("UTF-8");function clean($string) { $string = str_replace(' ', '-', $string); // Replaces all spaces with hyphens. ...
Follow Us