The blog contains tips for drupal development using the Drupal content management system/framework.
Dominique De Cooman is a freelance drupal developer/consultant doing drupal development in the whole of Europe.
Feel free to contact me to hire me for your drupal development
Good tip. In case you only
Good tip.
In case you only want to retrieve one field, you could still go with your first option. You can get the table and field name dynamically as follows:
$field = content_database_info(content_fields('field_team_name'));
table is in $field['table']
optionally column in $field['columns']