PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Field labels in the DB?

  1. kjuplives
    Member

    Where are the field labels? i see the responses but not questions when I do the following query:
    mysql> select f.title, f.is_active, d.* from my_DB2012.wp_rg_form f, wp_rg_lead_detail d where d.form_id=f.id limit 2;

    The result:
    +----------------------------------+-----------+----+---------+---------+--------------+--------------------+
    | title | is_active | id | lead_id | form_id | field_number | value |
    +----------------------------------+-----------+----+---------+---------+--------------+--------------------+

    Can anyone let me know where the labels are stored? Essentially I'm looking for a way to scrape the form data over to another DB and I need to know where this form data is stored.

    Thanks in advance,
    -Kevin Lane

    Posted 12 years ago on Thursday March 22, 2012 | Permalink
  2. jpfour23
    Member

    Me too, please!

    Posted 11 years ago on Saturday January 12, 2013 | Permalink
  3. Field labels are stored along with the form, since the labels do not change with each form submission. They're part of the form object and stored in wp_rg_form_meta as serialized data. That answers your question but I'm not sure if it helps you accomplish your goal. If you have a specific use in mind, please let us know how you will use the information and we can try and help you with more specific information.

    Posted 11 years ago on Sunday January 13, 2013 | Permalink