<?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: How do I pick up list data after submission</title>
		<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission</link>
		<description>Gravity Support Forums Topic: How do I pick up list data after submission</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 16:53:35 +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/how-do-i-pick-up-list-data-after-submission" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "How do I pick up list data after submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission#post-119935</link>
			<pubDate>Sat, 12 Jan 2013 01:48:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">119935@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Let me know if you need help.  You're in advanced territory here with the list field, but we can help you get the information out of the entry.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bizingenuity on "How do I pick up list data after submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission#post-119815</link>
			<pubDate>Fri, 11 Jan 2013 22:50:01 +0000</pubDate>
			<dc:creator>bizingenuity</dc:creator>
			<guid isPermaLink="false">119815@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok. I'll try that. Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How do I pick up list data after submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission#post-119378</link>
			<pubDate>Fri, 11 Jan 2013 09:19:17 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">119378@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;That is correct.  This information will be dumped to the screen, but it's technically not the 'correct' way of doing it.  You should be able to view the source of the confirmation page and see the arrays being dumped.  It's not always displayed on-screen.&#60;/p&#62;
&#60;p&#62;If that does not work for you, we can always set up proper logging so you can check the log file for the array and figure out how to address your values.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bizingenuity on "How do I pick up list data after submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission#post-118681</link>
			<pubDate>Thu, 10 Jan 2013 15:50:30 +0000</pubDate>
			<dc:creator>bizingenuity</dc:creator>
			<guid isPermaLink="false">118681@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I've tried to do this several times with var_dump($entry); and print_r($entry);&#60;/p&#62;
&#60;p&#62;Here's my simple code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;#39;gform_after_submission_4&#38;#39;, &#38;#39;post_to_instant_customer4&#38;#39;, 10, 2);
function post_to_instant_customer4($entry, $form) {

    var_dump($entry);
    print_r($entry);

}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The ID of the form is 4 as shown on the form list. Upon submission, it simply goes straight to the confirmation message that the form submission was successful.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "How do I pick up list data after submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission#post-117966</link>
			<pubDate>Wed, 09 Jan 2013 22:19:16 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">117966@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Whenever faced with the question of how to get the data out of a list field, you can dump the $entry object in your gform_after_submission hook.  That will show you exactly how to reference each and every field value in your form.  You can use print_r($entry) or var_dump($entry) inside the function you have hooked to gform_after_submission.  I usually echo &#34;&#38;lt;!-- &#34; before the  print_r and &#34; --&#38;gt; afterward, so the dump goes into the comments, not the screen.  Then I usually submit the form from the form preview and check the source of the confirmation screen to see what got dumped.  &#60;/p&#62;
&#60;p&#62;Be sure to remove that debugging code one you figure out how to get all your values out of the array. &#60;/p&#62;
&#60;p&#62;The list field values are stored as serialized data.  You can use the PHP function unserialize the get those values out of the list field &#60;a href=&#34;http://php.net/manual/en/function.unserialize.php&#34; rel=&#34;nofollow&#34;&#62;http://php.net/manual/en/function.unserialize.php&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>bizingenuity on "How do I pick up list data after submission"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/how-do-i-pick-up-list-data-after-submission#post-117865</link>
			<pubDate>Wed, 09 Jan 2013 20:33:09 +0000</pubDate>
			<dc:creator>bizingenuity</dc:creator>
			<guid isPermaLink="false">117865@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I have an issue here where I really need this to work. I've built custom actions and functions to pick up data and store it in a CRM after a successful form submission, but I can't figure out how to pull the data out of a list. Is it store in an array? I understand that to pull something like the first name, all LI woud need to do is do $firstname = $entry[&#34;1.3&#34;]; and then use that... but what do I do with a dynamic list?&#60;/p&#62;
&#60;p&#62;My form: &#60;a href=&#34;https://www.highperformancesummit.com/checkout-march/?id=1&#38;amp;n=ONE+Ticket&#38;amp;q=4&#38;amp;pr=1&#34; rel=&#34;nofollow&#34;&#62;https://www.highperformancesummit.com/checkout-march/?id=1&#38;amp;n=ONE+Ticket&#38;amp;q=4&#38;amp;pr=1&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
