フォーム モジュールを作成し (セグメントのみ表示)、フォームの質問の間にテキストを追加したいので、次のように記述しましたが、「テキストはここにあります」というテキストが表示されません。
... $form['name1'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#collapsible' => TRUE,
'#collapsed' => FALSE,
);
?><html><p>Text is here </p></html><?
$form['name2'] = array(
'#type' => 'textfield',
'#title' => t('Name'),
'#collapsible' => TRUE,
'#collapsed' => FALSE, ...