Replies: 0
Hi, is it possible to have a field label called ‘Full Name’ but enable SF to separate the two once it’s added?
My previous form used php to do this, for example the field ID for Full Name was “e_name” and php split it before sending like this:
if ( stristr($e_name," ") ) {
$first_name = stristr($e_name," ",true) ;
$last_name = stristr($e_name," ") ;
} else {
$first_name = $e_name ;
$last_name = "" ;
}
Is this something I can do here?