<?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: Creating an external url based on the information submited in a form.</title>
		<link>https://legacy.forums.gravityhelp.com/topic/creating-an-external-url-based-on-the-information-submited-in-a-form</link>
		<description>Gravity Support Forums Topic: Creating an external url based on the information submited in a form.</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 02:58:03 +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/creating-an-external-url-based-on-the-information-submited-in-a-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Carl Hancock on "Creating an external url based on the information submited in a form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/creating-an-external-url-based-on-the-information-submited-in-a-form#post-41784</link>
			<pubDate>Mon, 21 Nov 2011 17:33:47 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">41784@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;No problem, so as mentioned above you would use the gform_after_submission hook and use that to execute your custom code after the form is submitted.  That hook gives you access to the Entry object which contains all of the entry data. The entry is what is created when the form is submitted and stored. Have fun!  Customizing Gravity Forms opens up a whole new world if you know how to work with WordPress and PHP.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dimitris73 on "Creating an external url based on the information submited in a form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/creating-an-external-url-based-on-the-information-submited-in-a-form#post-41778</link>
			<pubDate>Mon, 21 Nov 2011 16:57:08 +0000</pubDate>
			<dc:creator>Dimitris73</dc:creator>
			<guid isPermaLink="false">41778@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yes, I want to do it behind the scenes.&#60;br /&#62;
Thank you Carl. You were very helpfull.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Creating an external url based on the information submited in a form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/creating-an-external-url-based-on-the-information-submited-in-a-form#post-41760</link>
			<pubDate>Mon, 21 Nov 2011 16:29:23 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">41760@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It really depends on what you are trying to do.&#60;/p&#62;
&#60;p&#62;If you are trying to pass form data to an external application or an external URL when the form is submitted and do so behind the scenes, so the user doesn't see it happen and the user remains on your site... then you must do so by writing custom code and use the gform_after_submission hook.&#60;/p&#62;
&#60;p&#62;The gform_after_submission hook allows you to execute custom code and gives you access to the entry data that is created by the form.  You can then execute custom PHP to do whatever you want with that data, send it to an external URL, etc.  It's your custom PHP so you can do what you want.&#60;/p&#62;
&#60;p&#62;This hook is documented here:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Your custom code would go either in your themes functions.php file, or you would create your own custom plugin and activate it if you want your custom code to be self contained and not part of your theme files.&#60;/p&#62;
&#60;p&#62;If you want to physically redirect the user to this 3rd party site and pass data to it, then you can use the Redirect option for the Confirmation settings in the Form Settings.  You can then use the query string builder to pass field data to that URL.&#60;/p&#62;
&#60;p&#62;So it really depends on what you are trying to do.  It sounds like you want to do it behind the scenes, so custom code and the gform_after_submission hook is probably what you are going to need to utilize.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Dimitris73 on "Creating an external url based on the information submited in a form."</title>
			<link>https://legacy.forums.gravityhelp.com/topic/creating-an-external-url-based-on-the-information-submited-in-a-form#post-41730</link>
			<pubDate>Mon, 21 Nov 2011 14:37:09 +0000</pubDate>
			<dc:creator>Dimitris73</dc:creator>
			<guid isPermaLink="false">41730@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello.&#60;br /&#62;
I would like to pass on some of the form data (that is submitted by the user) to an external application on an external url.&#60;br /&#62;
I have read&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/passing-data-to-non-wordpress-application&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/passing-data-to-non-wordpress-application&#60;/a&#62;&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/pass-form-data-to-receipt-page&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/pass-form-data-to-receipt-page&#60;/a&#62;&#60;br /&#62;
But I think my request is something different.&#60;br /&#62;
Could you please help me on this?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
