<?php

$dates = xform_helper::create_dates();
echo form::dropdown($o->form_name . '_day' . $o->group_id, $dates['days'], date("d", strtotime($o->cval)), 'class="date-dropdown"');
echo form::dropdown($o->form_name . '_month' . $o->group_id, $dates['months'], date("m", strtotime($o->cval)), 'class="date-dropdown"');
echo form::dropdown($o->form_name . '_year' . $o->group_id, $dates['years'], date("Y", strtotime($o->cval)), 'class="date-dropdown"');
echo $o->get_error($o->name);