I want to concatenate two database values in the databind array and the conventional "." is not working. <?php
Select2::create(array(
"name"=>"singleSelect3",
"dataStore"=> $this->dataStore("test"),
"dataBind"=>"last_name"."first_name", //HERE IS WHERE I WANT TO
"attributes"=>array(
"class"=>"form-control",
)
));
?>