Answers for "acentos php utf8"

PHP
-1

php utf-8

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

utf8 php

//PDO
$conn->query("SET NAMES utf8");
or
$conn->exec("set names utf8");
//mysqli
mysql_query("set names 'utf8'");
Posted by: Guest on March-07-2022

Browse Popular Code Answers by Language