I have the following string:
\ud83d\udc57 DESTINATION OF SHOPAHOLIC\n\u260e 088216013304 \/ 085713900029\n\ud83d\udcf1 BB 328713BD\n\u2712 LINE : ladydhie\n\ud83d\udcb3 BCA \n\ud83d\udc8b KEEP CALM AND HAPPY SHOPPING!!!\ud83d\udc8b
that I wanted to store as a string in MySQL however doing a simple insert of this gives me empty. Is there something special that I need to do?
I am using Symfony2 and Doctrine as the ORM. So I have an object called User, which has a column called bio and is stored as a string, however when I do something like:
user->setBio(\ud83d\udc57 DESTINATION OF SHOPAHOLIC\n\u260e 088216013304 \/ 085713900029\n\ud83d\udcf1 BB 328713BD\n\u2712 LINE : ladydhie\n\ud83d\udcb3 BCA \n\ud83d\udc8b KEEP CALM AND HAPPY SHOPPING!!!\ud83d\udc8b)
this gives me empty bio stored in the DB. What should I do to be able to correctly store this.