我正在使用 drupal,我用 drupal fapi 制作了一个表单
moduele_menu()
module_myform()
module_myform_submit
..
我在页面中获取了表单元素(输入...),但我没有得到包装器(
有人可以帮忙吗
am using drupal, I made a form wiht drupal fapi
moduele_menu()
module_myform()
module_myform_submit
..
I get in my page the form elements ( inputs...) but i did not get the wrapper ( <FORM action=... </FORM>
!!!!
Can someone help please
发布评论
评论(1)
您需要使用
drupal_get_form('form_id')
让 drupal 了解表单。这就是创建表单 HTML 元素和 Drupal 所需的其他元素的原因。You need to use
drupal_get_form('form_id')
to let drupal know about the form. That is what is creating the form HTML element and other elements needed by Drupal.