Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
General Tech Bugs & Fixes 2 years ago
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.
Turn Your Knowledge into Earnings.
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
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.
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.
General Tech 9 Answers
General Tech 7 Answers
General Tech 3 Answers
General Tech 2 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.