what I am trying to do is to create a form with the Form API, so that users can post questions for a topic. The questions have to be moderated (publish / unpublish questions), so I decided to write my own module to handle that.
Following diverse tutorials and screencasts, I've created a hook_menu()-function and a form-function to define the form. All went well: I've got a page with the form in it.
The next step, I'd like to do, is to put that form into a node. I have a content type with a 'node reference'-field, where I want to include that form.
How can I solve this?
Tom