“PHP Mysql Text Markfrage Frage” Code-Antworten

PHP Mysql Text Markfrage Frage

$MySQL_Handle = mysqli_connect(HOSTNAME,DATABASE_USERNAME,DATABASE_PASSWORD,DATABASE_NAME) 
or die ( mysqli_error($MySQL_Handle) ); 

$sSQL= 'SET CHARACTER SET utf8'; 

mysqli_query($MySQL_Handle,$sSQL) 
or die ('Can\'t charset in DataBase'); 
Borma

PHP Mysql Text Markfrage Frage

$dbh = new PDO('mysql:host=localhost;dbname=' . $DB_NAME, $DB_USER,
$DB_PASS, array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES 'UTF8'"));
$dbh->exec("SET CHARACTER SET UTF8");
Borma

Ähnliche Antworten wie “PHP Mysql Text Markfrage Frage”

Fragen ähnlich wie “PHP Mysql Text Markfrage Frage”

Weitere verwandte Antworten zu “PHP Mysql Text Markfrage Frage” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen