Good evening,
I'd like to insert a value with a colon in an array for a dropdown. But unfortunately this is already used as syntax. Is there a possibility?
Best regards
Markus
2 Answers
You can change separator e.g. #
$col["edittype"] = "select";
$col["editoptions"] = array("value"=>"10:05#10:05;20#$20;30#$30;40#$40;50#$50","separator"=>"#");
Your Answer