Hello,
I need to concatenate 3 field to use in select options:
<?php echo \Phalcon\Tag::select(array(
"TiposEquip_id",
Caracteristicas::find("nome = 'RAM'") ,
"using" => array("id","descricao"),
'multiple' => 'multiple',
"class" => "form-control"))
?>
I need the id plus another field wich is 3 filed concatenated. It's possible ?
thx CV