Pass values from php from to the salesforce [PHP Integration]

General Tech Bugs & Fixes 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Bugs & Fixes related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

 

I Have a generic PHP Application Form which has around 20 fields(say First Name,Last name,Mobile,Position etc ) .I am integrating this form to create a record in salesforce.

How can i pass the values entered in the form to the PHP to create a record.

I am trying to create a record using Saleforce PHP tool kit.I have gone through the samples of the php code given by salesforce. But had no clue how to pass the parameters.

PHP Code to create the record in salesforce

php
$fields = array (`'First_Name__c' => 'Praveen','Last_Name__c' => 'Bonalu','Mobile__c' => '234-345-4567',);
$sObject = new SObject();
$sObject->fields = $fields;
$sObject->type = 'Candidate__c';
echo "**** Creating the following:\r\n";
$createResponse = $mySforceConnection->create(array($sObject));
print_r($createResponse);

?>

Php form:to capture the date entered by the user

FirstName: <input type="text" name="First name" value="">

Last Name: type="text" name="Last name" value="">

Mobile: <input type="text" name="Mobile" value="">

Thanks Praveen

profilepic.png
manpreet 2 years ago

 

In php $_POST is used to access any element value from any form so we will use that to access form elements values such as Firstname, Lastname, Mobile and others.

Html form

 action="submit.php" method="post">
FirstName: <input type="text" name="Firstname" value="php echo $name;?>">
Last Name: <input type="text" name="Lastname" value="php echo $Name;?>">

Mobile: <input type="text" name="Mobile" value="php echo $Mobile;?>">
//and other fields here.

Submit.php

php
$fields = array ('First_Name__c' =>$_POST['Firstname'],'Last_Name__c' =>$_POST['Lastname'],'Mobile__c' => $_POST['Mobile']);
$sObject = new SObject();
$sObject->fields = $fields;
$sObject->type = 'Candidate__c';
echo "**** Creating the following:\r\n";
$createResponse = $mySforceConnection->create(array($sObject));
print_r($createResponse);

?>

I guess it will make sense now.


0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

tuteehub community

Join Our Community Today

Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.

tuteehub community