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.

automatically export to csv to be displayed on webpage

  1. hi can the form automatically save to an existing csv file so that it can be displayed on a webpage without having to manually do the work? also where is the data stored? or where would the CSV file be stored?

    Posted 11 years ago on Sunday May 27, 2012 | Permalink
  2. David Peralty

    Gravity Forms can export entries as a CSV. The CSV is created and then pushed to your computer, and not saved on your server. Gravity Forms can create WordPress posts, but beyond that has no real ability to display submitted data on your website. Data is stored in a table inside your WordPress database.

    Let me know if I've answered all of your questions.

    Posted 11 years ago on Monday May 28, 2012 | Permalink
  3. y2kemo
    Member

    David,
    Since the data is stored in a table it can be retrieved and displayed if a page is setup to do so, yes?
    Chris

    Posted 11 years ago on Wednesday May 30, 2012 | Permalink
  4. David Peralty

    Sure, and there are some add-ons, like the third party created Directory Add-on that does just that. You can always access anything stored in a database with the right coding. :)

    Posted 11 years ago on Wednesday May 30, 2012 | Permalink
  5. What is the table called? Is there only 1 table for entries?

    Posted 11 years ago on Wednesday August 8, 2012 | Permalink
  6. Here is a list of the Gravity Forms tables:

    $wpdb->prefix . "rg_form"
    $wpdb->prefix . "rg_form_meta"
    $wpdb->prefix . "rg_form_view"
    $wpdb->prefix . "rg_lead"
    $wpdb->prefix . "rg_lead_detail"
    $wpdb->prefix . "rg_lead_detail_long"
    $wpdb->prefix . "rg_lead_meta"
    $wpdb->prefix . "rg_lead_notes"

    As you can see, there are 5 tables related to leads. You might want to use a tool like phpMyAdmin to take a look at how the data is stored so you know how to approach getting the data out.

    Posted 11 years ago on Wednesday August 8, 2012 | Permalink