Module Development

Movie Project: Add Form Data to Custom Database Tables for Drupal 7

Check your version

This tutorial covers a topic in Drupal 7 which may or may not be the version you're using. We're keeping this tutorial online as a courtesy to users of Drupal 7, but we consider it archived.

Add user data to the database from an existing form.

Goal

Save data from a form to a custom database table.

Prerequisites

You will need the following knowledge and skills. If you need a review, check out the Additional resources section at the bottom of this page.

  1. Understand how to update user information in the database.
  2. Use database queries.
  3. Use default values in forms.

Tasks

Create a function to save the user data which has been submitted in the altered user form.

Create a function to put the data into the new table created earlier.

Create functions to retrieve the data from the form.

Set the default values of the new fields.

Recap

  • hook_user_update can be used to manage additional functionality for a user object.
  • Break down functions to set and retrieve data, so they can be re-used.

Further your understanding

Additional resources

Creative Commons License

Drupal Training Resources by Damian Robinson are licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. Based on a work at http://www.damianrobinson.co.uk.

Hands-On Exercises: Movie Project