I have a page building a form with:
drupal_get_form('my_form_id')
my_form_id(&$form_state)
my_form_id_validate($form, &$form_state)
my_form_id_submit($form, &$form_state)
and saving in DB, my question is how can I edit data saved in another page? just loading the content from a table in DB and building the form filled with the data + edit button ?
In other words, I'm using Form API to build a form and save the node in DB, I want to build another form to edit that node.
Thanks.
hook_form_alteris used to edit the form - Vimalnath