View Single Post
  #4  
Old 05-24-2008, 05:06 PM
mike mike is offline
Administrator
 
Join Date: May 2007
Posts: 273
Send a message via AIM to mike Send a message via MSN to mike Send a message via Yahoo to mike Send a message via Skype™ to mike

Yeah Scott I did notice that problem too when I was writing a series of scripts that process a system like you built kind of like that. I found a way around that though:


PHP Code:
foreach ($data as $key => $value)
{
    
$data[$key] = utf8_encode($value);

I am sure that you already know of the utf8_encode function, but I was getting API errors back from salesforce on some of my inserts and added this and the errors went away

I am also going to email you a little script that may help you out

~Mike
Reply With Quote