Im searching all over for an answer to this and still cant seem to find it
Server : localhost
MySQL Version : 5.6.17
I have set my db's tables to utf8mb4 to graduate to more character possibilities. When i insert certain hashed information into my table, depending on the random sequence of characters in the string, only a fragment of the string actually gets inserted (if not left completely blank).
In my handle for my pdo statement, i do charset=utf8mb4 before prepping my query, and as fail safe i also SET NAMES utf8mb4 before. So i thought everything should be kosher with the CHARSET and COLLATE.
So my question is, what should i be doing to successfully put the entire string into field? Is there some character escaping i should be doing that im missing?
Edit : When i copy/paste the string into phpmyadmin, it successfully puts the entire string in the field.