I'm using the code from https://www.chronoengine.com/faqs/70-cfv5/5232-how-do-i-build-a-dynamic-drop-down-in-cfv5.html tutorial and am unable to dynamically load radio boxes.
Create an Event and sending
Please advise... Thanks!
Create an Event and sending
<?php
$json= array()
$json[] = array('id' => 'phonenumber', 'text' => '1 123 456-7890');
$json[] = array('id' => 'phonenumber', 'text' => '1 123 456-7891');
echo json_encode($json);
?>
Please advise... Thanks!