Bernd: 👥 -> Fatal error: Uncaught PDOException: SQLSTATE[22007]

Beitrag lesen

Ich habe alles auf utf8mb_unicode_ci umgestellt.

Das Feld ist

longtext utf8mb4_unicode_ci

Ich bekomme immer diese Fehlermeldung, wenn ich es eingebe:

Fatal error: Uncaught PDOException: SQLSTATE[22007]: Invalid datetime format: 1366 Incorrect string value: '\xF0\x9F\x91\xA5 B...'

wenn ich es über die phpmyadmin eingebe funktioniert es.

über :

$statement 	= $pdo->prepare("UPDATE tab1 SET inhalt =:inhalt WHERE id =:id");	
$result 	= $statement->execute(array('inhalt' 	=> $_POST['inhalt'],
										'id' 		=> $id));	

und es ist dieses Symbol:

👥

Bernd

PS: wer schrubt wo ?