<?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: Send all post variables to page</title>
		<link>https://legacy.forums.gravityhelp.com/topic/send-all-post-variables-to-page</link>
		<description>Gravity Support Forums Topic: Send all post variables to page</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 15:50:40 +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/send-all-post-variables-to-page" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Send all post variables to page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-all-post-variables-to-page#post-34300</link>
			<pubDate>Fri, 02 Sep 2011 19:34:03 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">34300@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Are first and last names the only things missing?  Everything else comes through OK?&#60;/p&#62;
&#60;p&#62;Also, can you post your var_dump($entry); ?  If it's huge, please use pastie.org or pastebin.com&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Send all post variables to page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-all-post-variables-to-page#post-34295</link>
			<pubDate>Fri, 02 Sep 2011 19:13:35 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">34295@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks.&#60;/p&#62;
&#60;p&#62;I'm doing just that, but can't grab the first and last name fiel values. They have odd indexes.&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;add_action(&#38;quot;gform_post_submission&#38;quot;, &#38;quot;set_post_content&#38;quot;, 10, 2);
function set_post_content($entry, $form){

    var_dump($entry);

	$first_name = $entry[&#38;#39;9.3&#38;#39;];
	$last_name = $entry[&#38;#39;9.6&#38;#39;];
	$quantity = $entry[&#38;#39;7&#38;#39;];
	$product_code = $entry[&#38;#39;3&#38;#39;];
	$description = &#38;#39;Vehicle Sticker&#38;#39;;
	$test = &#38;#39;{TESTD}&#38;#39;;
	// Price::Qty::Code::Description::Flags
	// 9.99::1:: 001::T-Shirt::{TEST}{TESTD}{RB}
	$products = $quantity  .&#38;#39;::&#38;#39; . $product_code  . &#38;#39;::&#38;#39; . $description . &#38;#39;::&#38;#39; . $test  ;
	$address = $entry[&#38;#39;15&#38;#39;];
	$city = $entry[&#38;#39;20&#38;#39;];
	$state = $entry[&#38;#39;16&#38;#39;];
	$zip = $entry[&#38;#39;34&#38;#39;];
	$email = $entry[&#38;#39;18&#38;#39;];
	$phone = $entry[&#38;#39;17&#38;#39;];

	?&#38;gt;
	&#38;lt;FORM name=&#38;quot;MyForm&#38;quot; action=&#38;quot;https://secure.internetsecure.com/process.cgi&#38;quot; method=post&#38;quot;&#38;gt;
	&#38;lt;input type=hidden name=&#38;quot;GatewayID&#38;quot; value=&#38;quot;15283&#38;quot;&#38;gt;
	&#38;lt;input type=hidden name=&#38;quot;language&#38;quot; value=&#38;quot;English&#38;quot;&#38;gt;
	&#38;lt;input type=hidden name=&#38;quot;ReturnURL&#38;quot; value=&#38;quot;http://www.autospy.org/EndofRegistration&#38;quot;&#38;gt;
	&#38;lt;input type=hidden name=&#38;quot;xxxCancelURL&#38;quot; value=&#38;quot;http://www.autospy.org/contact&#38;quot;&#38;gt;
	&#38;lt;input type=hidden name=&#38;quot;Products&#38;quot; value=&#38;quot;&#38;lt;?php echo $products; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxName&#38;quot; value=&#38;quot;&#38;lt;?php echo $first_name; ?&#38;gt;  &#38;lt;?php echo $first_name; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxAddress&#38;quot; value=&#38;quot;&#38;lt;?php echo $address; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxCity&#38;quot; value=&#38;quot;&#38;lt;?php echo $city; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxState&#38;quot; value=&#38;quot;&#38;lt;?php echo $state; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxZipCode&#38;quot; value=&#38;quot;&#38;lt;?php echo $zip; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxEmail&#38;quot; value=&#38;quot;&#38;lt;?php echo $email; ?&#38;gt;&#38;quot;&#38;gt;
	&#38;lt;input type=&#38;quot;hidden&#38;quot; name=&#38;quot;xxxPhone&#38;quot; value=&#38;quot;&#38;lt;?php echo $phone; ?&#38;gt;&#38;quot;&#38;gt; 

&#38;lt;/FORM&#38;gt;	

&#38;lt;SCRIPT LANGUAGE=&#38;quot;JavaScript&#38;quot;&#38;gt;

  //document.MyForm.submit();
&#38;lt;/SCRIPT&#38;gt;
&#38;lt;?php

}&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Send all post variables to page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-all-post-variables-to-page#post-34292</link>
			<pubDate>Fri, 02 Sep 2011 19:07:42 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">34292@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can use the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_post_submission&#34; rel=&#34;nofollow&#34;&#62;gform_post_submission&#60;/a&#62; hook to send data wherever you like after the entry is accepted.&#60;/p&#62;
&#60;blockquote&#62;&#60;p&#62;
This action hook is executed at the end of the submission process (after form validation, notification, and entry creation). Use this hook to perform actions after the entry has been created (i.e. feed data to third party applications). The Entry Object is available to this hook and contains all submitted values
&#60;/p&#62;&#60;/blockquote&#62;</description>
		</item>
		<item>
			<title>iamcanadian1973 on "Send all post variables to page"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/send-all-post-variables-to-page#post-34280</link>
			<pubDate>Fri, 02 Sep 2011 17:23:18 +0000</pubDate>
			<dc:creator>iamcanadian1973</dc:creator>
			<guid isPermaLink="false">34280@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Is there a way to bypass the query string/redirect option, and just post to another page?&#60;br /&#62;
I would like to post to a page outside WordPress (well doesn't really matter) and populate a hidden form that I'll be auto submitting to a payment gateway. It has to be a psot thta I send to them.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
