I am extracting data from Salesforce.com via their API using PHP. I can store the data in MySQL without an issue when it comes to any field type except multi-line.
In Salesforce, the field is like a notes section and entries are stored with line breaks, chr(13), chr(10), etc..
When I insert it into MySQL, it concatenates it into one long string.
If I query this field from MySQL I cannot get it to format like it is in Salesforce.
There is a discussion on this on my site (sorry for the external link, but I thought it would explain it better) > http://www.mikesimonds.com/salesforce-php-tutorials/47-salesforce-php-mysql-database-replication-tool-6.html
Some friends have said that I should use base64_encode to insert and base64_decode , but I have tried it.
Are there any tips or tricks that I am missing here, I would REALLY appreciate any help.
Thanks in Advance
~Mike