I'm having a weird problem ,not sure what the title should be and I searched before posting this ,the collation of my database is set to utf8mb4_general_ci
and so is the column,
yet when I type into the text field of that column the php code saves it just fine,how ever when this special text is copied from somewhere the column stays empty !
I already have this set in my code
$this->connection = new mysqli(HOST, USER, PASS, DB);
$this->connection->set_charset('utf8mb4');