I use the Web-to-case feature of salesforce.com to capture new cases from my site:
http://www.articulate.com/support/contact
It works great, but I've run into a big limitation: If the required field is a custom salesforce field, PHP will not play nicely because salesforce field variables begin with numbers; PHP variables cannot begin with numbers, of course.
Aside from rebuilding my whole contact form in something other than PHP, which I don't want to do, are there any work-arounds to this in PHP? Is there a way I can attach a non-numeric prefix to the variable while the PHP is processing it, then strip away the non-numeric variable before passing into salesforce?
I have no control over the salesforce custom field variables. Here's an example variable from salesforce:
00N30000000i2oN
Thanks in advance for any suggestions.
-Gabe