2
votes
0answers
163 views

Creating a table for identical fields of two or more Webforms

Drupal 7 Webform 7.x-4.0-alpha6 I have two webforms with two fields in common; "name" and "e-mail". I want to display "name" and "e-mail" from all webform submissions in one overview table. The ...
1
vote
1answer
169 views

Table names without using curly brackets

I'm working in a project in Drupal6 and we are removing all the curly brackets from the table names in the queries because we don't need table prefixes and supposedly this will improve performance. ...
8
votes
2answers
5k views

How do you make sortable tables with a pager with data from a custom table?

For Drupal 6 you could do something like this: $header = array( array('data' => t('Order id'), 'field' => 'order_id'), ... array('data' => t('Transaction time'), 'field' => ...