How to insert into database Drupal Custom Fields
问题 I retrieve content types with the following code $form['ct'] = array( '#type' => 'checkboxes', '#options' => node_type_get_names(), '#title' => t('Hangi tür içerikler hakkında bilgi almak istersiniz?'), ); And It gives the following output http://i.stack.imgur.com/TOfS6.png And when I press Create new Account button, the POST Array is so : http://i.stack.imgur.com/BtxhC.png My Question is How can I insert into database these values and read? 回答1: There are two ways of saving this data and