我将消息表单和评论表单制作为块并将块嵌入视图中,每当我提交消息/评论表单时,页面都会重定向到消息/评论页面。
这是代码:
$node = node_load($nid); // $nid contains the node id
$comment = new stdClass;
$comment->nid = arg(2);
$form = drupal_get_form('comment_node_project_form', $comment);
print render($form);
我应该如何在不重定向的情况下提交表单?在 $form 变量上?