Без примера данных, с которых вы начинаете, трудно дать вам точный код для решения вашей проблемы.
В общем, лучший способ построения таблиц в Drupal такой:
$table_headers = array(
t('UGentID'), // this is the header for the first column
t('Internships'), // this is the header for the second column
);
$table_rows = array()
foreach ($studentUGentID as $key => $value) {
$table_rows[] = array(
'column 1 data', // add all the data for the row one column
'column 2 data', // at a time
);
}
$html = theme('table', $table_headers, $table_rows);
Как я уже сказал, не зная, что в $studentUGentID
и $internships
, я не могу помочь дальше.
С примерами данных я мог бы помочь вам больше.