Answers for "how to make php file encoding utf-8"

PHP
0

php utf-8

header('Content-Type: text/html; charset=utf-8');
Posted by: Guest on June-08-2020
2

utf8 encode php

$a = "Não";
  
echo utf8_encode($a);
Posted by: Guest on December-10-2020

Browse Popular Code Answers by Language