<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Query Submitted Forms from Custom Page</title>
		<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page</link>
		<description>Gravity Support Forums Topic: Query Submitted Forms from Custom Page</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 04:51:42 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/query-submitted-forms-from-custom-page" rel="self" type="application/rss+xml" />

		<item>
			<title>David Smith on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-40128</link>
			<pubDate>Fri, 04 Nov 2011 18:56:57 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">40128@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Andrew,&#60;/p&#62;
&#60;p&#62;Thanks for the link. That cleared things up significantly. :)&#60;/p&#62;
&#60;p&#62;Not sure if you have any dev experience; however, you'll likely need a little to get this up and running. Here is a top level view of how this would work. First off, you'll need two forms. The first form would be a multi-page form. The first page would have the user info you are collecting. The second page would have whatever content you want to display to the user before they confirm the submission.&#60;/p&#62;
&#60;p&#62;The second form would appear in the sidebar of the page containing the first form. You can use the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_render&#34; rel=&#34;nofollow&#34;&#62;gform_pre_render&#60;/a&#62; hook and check which page of the form is being displayed. If it is the second page, you can allow the &#34;edit&#34; form to display by default. If not, you can hide it.&#60;/p&#62;
&#60;p&#62;To prepopulate the values for the second form, you can pull them from the &#60;strong&#62;$_POST&#60;/strong&#62; and use the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Using_Dynamic_Population&#34; rel=&#34;nofollow&#34;&#62;gform_field_value&#60;/a&#62; hook to populate those retrieved values for each field based on it's dynamic population parameter (advanced tab of each field).&#60;/p&#62;
&#60;p&#62;That's quite a bit if you're just diving into Gravity Forms; however, I think you'll find that most of the hooks are well documented and if you have any specific questions on this while you're working on it, we'd be happy to help. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AndrewTraub on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-40117</link>
			<pubDate>Fri, 04 Nov 2011 17:50:09 +0000</pubDate>
			<dc:creator>AndrewTraub</dc:creator>
			<guid isPermaLink="false">40117@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm trying to duplicate the functionality of this url:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.registeredagentintexas.com/signup.html&#34; rel=&#34;nofollow&#34;&#62;http://www.registeredagentintexas.com/signup.html&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;After you enter the values, you are taken to a contract page.   You can modify the values in the sidebar or pay online.  Once the payment is made, the values are used again to send out a PDF containing them.&#60;/p&#62;
&#60;p&#62;Andrew
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Smith on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39878</link>
			<pubDate>Thu, 03 Nov 2011 12:04:12 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">39878@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Andrew,&#60;/p&#62;
&#60;p&#62;You might consider using the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_confirmation&#34; rel=&#34;nofollow&#34;&#62;gform_confirmation&#60;/a&#62; hook to show the user the information that they just submitted. You'll see that one of the available parameters of this hook is the $lead variable which contains all of the just-submitted information.&#60;/p&#62;
&#60;p&#62;As far as allowing the user to update this information... that would essentially require that you query the database with the adjusted values.&#60;/p&#62;
&#60;p&#62;Do you have an example of what you currently have setup we could see? Might be able to guide you better. :)
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AndrewTraub on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39865</link>
			<pubDate>Thu, 03 Nov 2011 11:15:01 +0000</pubDate>
			<dc:creator>AndrewTraub</dc:creator>
			<guid isPermaLink="false">39865@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm a bit dense.  I'm really letting a visitor fill in a form.  Then, on another page, I want to show them what they entered to review it and either edit it again (on the same page or by going back to the prior page where the entries will be filled out) or clicking OK to advance.  So how do I show the visitor who just completed a form what he just entered in on another page or post?  I'm not seeing anything in the get_leads you showed above on how to filter by the visitor (maybe by session id or something).&#60;/p&#62;
&#60;p&#62;Andrew
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39796</link>
			<pubDate>Wed, 02 Nov 2011 23:05:19 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">39796@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It does loop through all entries, since that's what I needed to do.&#60;/p&#62;
&#60;p&#62;You did not mention that you wanted to show all entries made by a certain visitor or user.  But you can do that.  If you return all the form entries, you can use a conditional to check for the existence of a specific username or name and address combination.  Or, if you look at the get_leads function in forms_model.php, you will find all sorts of nifty parameters you can send to the function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
public static function get_leads($form_id, $sort_field_number=0, $sort_direction=&#38;#39;DESC&#38;#39;, $search=&#38;#39;&#38;#39;, $offset=0, $page_size=30, $star=null, $read=null, $is_numeric_sort = false, $start_date=null, $end_date=null, $status=&#38;#39;active&#38;#39;) {&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>AndrewTraub on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39749</link>
			<pubDate>Wed, 02 Nov 2011 17:24:19 +0000</pubDate>
			<dc:creator>AndrewTraub</dc:creator>
			<guid isPermaLink="false">39749@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The code looks like it loops through all form entries - is there a simple way to show the entries that were just entered in by the visitor - i.e. if I get their name and address and I just want to show that back to them on the next page, is there sample code for that?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;/p&#62;
&#60;p&#62;Andrew
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39682</link>
			<pubDate>Wed, 02 Nov 2011 11:36:37 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">39682@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Andrew.  Here is some code I wrote for one application.&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/kHpaHQvi&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/kHpaHQvi&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You can see the result of using the shortcode here:&#60;br /&#62;
&#60;a href=&#34;http://troop24riverside.com/upcoming-events/&#34; rel=&#34;nofollow&#34;&#62;http://troop24riverside.com/upcoming-events/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;My use was easy to pull off because they use the same form for all events, and the name is always the same field.  So, 1.3 and 1.6 in my example.  If you want a generic shortcode, you might have to extend it to allow multiple parameters, like field IDs.&#60;/p&#62;
&#60;p&#62;Let me know if that gets you going in the right direction.  There is probably an opportunity for a Gravity Forms Shortcode plugin, along the lines of Justin Tadlock's Template Tag Shortcodes.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://justintadlock.com/archives/2009/03/24/template-tag-shortcodes-wordpress-plugin&#34; rel=&#34;nofollow&#34;&#62;http://justintadlock.com/archives/2009/03/24/template-tag-shortcodes-wordpress-plugin&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AndrewTraub on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39656</link>
			<pubDate>Wed, 02 Nov 2011 09:56:34 +0000</pubDate>
			<dc:creator>AndrewTraub</dc:creator>
			<guid isPermaLink="false">39656@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Chris,&#60;/p&#62;
&#60;p&#62;Is there a sample I can look at which shows how to display basic things like a name and email address?&#60;/p&#62;
&#60;p&#62;Andrew
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39607</link>
			<pubDate>Tue, 01 Nov 2011 19:28:51 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">39607@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;There are no shortcodes in Gravity Forms to display entries.  You can use hooks and Gravity Forms functions to get at the data.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>AndrewTraub on "Query Submitted Forms from Custom Page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/query-submitted-forms-from-custom-page#post-39548</link>
			<pubDate>Tue, 01 Nov 2011 13:27:52 +0000</pubDate>
			<dc:creator>AndrewTraub</dc:creator>
			<guid isPermaLink="false">39548@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Can the form entries be shown on a page or post using shortcodes or does the page/post have to be hacked with hooks?&#60;/p&#62;
&#60;p&#62;Andrew
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
