594
How to add the new record in salesforce Using php Toolkit
You can add the new records Account/Contact/Case or etc,. using below Code:
Just initialize the connection between Salesforce and PHP then use this code:
[php]
$createResponse = $mySforceConnection->create(array($sObject),’Contact’);
[/php]
You can find the Basic Tutorials about PHP and Salesforce Implementation using Below URL
https://theblogreaders.com/integration-between-salesforce-and-php