function HTML_Format_DD($table_id, $colname, $value) { $table = DD_TableRef($table_id); $type = $table['flat'][$colname]['type_id']; return HTML_Format($type, $value); }
/** * Wrapper function for HTML_Format(). * * INPUTS * @see HTML_Format * string $t Type_id * mixed $v value */ function hFormat($t, $v) { return HTML_Format($t, $v); }