• Madz
  • NEWBIE
  • 25 Points
  • Member since 2012

  • Chatter
    Feed
  • 1
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 4
    Replies
We are on Group Edition.

We have two forms a small one and a big one that being inserted through php Hook, and we keep getting duplicates which is driving us nuts.

Is there a way to just update the record that exists without creating a duplicate. 

Please advise.

Thank in advance.

Thanks
  • October 31, 2014
  • Like
  • 0

Hi I need to pass values from one page to another through php (formmail.php) and it is passing all fields except the ones starting with '00' example $00N20000003JXkJ

 

Is there a workaround?

 

Canwe custom change the names and IDs?

 

Thanks

  • April 09, 2012
  • Like
  • 0

Hi I managed to create a form to send a lead to salesforce and to add the details to the database.

Do you think it is possible to get the form details by email too? I am on group edition so can't use workflows.

 

Please advise.

 

Thank you.


Here is my setup inside an index.php file:

<?php
require_once('config.php'); // database connection

/////THEN here I put the SQL query////


//then here below is the function to pass the data to salesforce CRM system

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.salesforce.com/servlet/servlet.WebToLead");
curl_setopt($ch, CURLOPT_POST, 1);
// Pass POST data
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($cleanPOST));
curl_exec($ch); // Post to Salesforce
?>
<script type="text/javascript">
window.location = 'index.php?a=1';
</script>
<?php
}
else {
?>
<script type="text/javascript">
window.location = 'index.php?r=1';
</script>
<?php
}
}
?>

// then here comes the form with 
<form name="form" action="index.php" id="sfform" method="post" enctype="multipart/form-data">
////

 





  • April 09, 2012
  • Like
  • 0

HI I am new to salesforce, was trying to create a custome field for the web2lead but there is no radio button option.

 

How can I have radio buttons in my forms.

 

Please note I dont know how to use the codes or where to put them, do directions would be appreciated.

 

Thanks

  • February 16, 2012
  • Like
  • 0
We are on Group Edition.

We have two forms a small one and a big one that being inserted through php Hook, and we keep getting duplicates which is driving us nuts.

Is there a way to just update the record that exists without creating a duplicate. 

Please advise.

Thank in advance.

Thanks
  • October 31, 2014
  • Like
  • 0

Hi I need to pass values from one page to another through php (formmail.php) and it is passing all fields except the ones starting with '00' example $00N20000003JXkJ

 

Is there a workaround?

 

Canwe custom change the names and IDs?

 

Thanks

  • April 09, 2012
  • Like
  • 0

Hi I managed to create a form to send a lead to salesforce and to add the details to the database.

Do you think it is possible to get the form details by email too? I am on group edition so can't use workflows.

 

Please advise.

 

Thank you.


Here is my setup inside an index.php file:

<?php
require_once('config.php'); // database connection

/////THEN here I put the SQL query////


//then here below is the function to pass the data to salesforce CRM system

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.salesforce.com/servlet/servlet.WebToLead");
curl_setopt($ch, CURLOPT_POST, 1);
// Pass POST data
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($cleanPOST));
curl_exec($ch); // Post to Salesforce
?>
<script type="text/javascript">
window.location = 'index.php?a=1';
</script>
<?php
}
else {
?>
<script type="text/javascript">
window.location = 'index.php?r=1';
</script>
<?php
}
}
?>

// then here comes the form with 
<form name="form" action="index.php" id="sfform" method="post" enctype="multipart/form-data">
////

 





  • April 09, 2012
  • Like
  • 0