<?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: Create DB Record in Third Party Plugin Table from New User Registration Form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/create-db-record-in-third-party-plugin-table-from-new-user-registration-form</link>
		<description>Gravity Support Forums Topic: Create DB Record in Third Party Plugin Table from New User Registration Form</description>
		<language>en-US</language>
		<pubDate>Thu, 23 Apr 2026 19:45:46 +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/create-db-record-in-third-party-plugin-table-from-new-user-registration-form" rel="self" type="application/rss+xml" />

		<item>
			<title>Rob Harrell on "Create DB Record in Third Party Plugin Table from New User Registration Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/create-db-record-in-third-party-plugin-table-from-new-user-registration-form#post-263345</link>
			<pubDate>Mon, 20 May 2013 11:55:46 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">263345@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;handling via priority support.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lavalleecreative on "Create DB Record in Third Party Plugin Table from New User Registration Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/create-db-record-in-third-party-plugin-table-from-new-user-registration-form#post-257807</link>
			<pubDate>Fri, 17 May 2013 11:23:05 +0000</pubDate>
			<dc:creator>lavalleecreative</dc:creator>
			<guid isPermaLink="false">257807@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Not trying to be pushy here....but, anything?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>lavalleecreative on "Create DB Record in Third Party Plugin Table from New User Registration Form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/create-db-record-in-third-party-plugin-table-from-new-user-registration-form#post-251497</link>
			<pubDate>Mon, 13 May 2013 20:46:57 +0000</pubDate>
			<dc:creator>lavalleecreative</dc:creator>
			<guid isPermaLink="false">251497@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I’m looking for a method to automatically create a new record in the Store Locator plugin (&#60;a href=&#34;http://www.charlestonsw.com/&#34; rel=&#34;nofollow&#34;&#62;http://www.charlestonsw.com/&#60;/a&#62;) when a new user signs up via a Gravity Forms user registration form on the site (&#60;a href=&#34;http://www.mnla.com&#34; rel=&#34;nofollow&#34;&#62;http://www.mnla.com&#60;/a&#62;). Using the Gravity Forms action hook and function below, I should (I think) be able to produce insertion of a new Store Locator item. This code snippet is included in my functions.php file. What I am getting in Store Locator is a new record, but with none of the data entered.&#60;/p&#62;
&#60;p&#62;Do you see anything in here that looks incorrect? Is there another way I might go about doing this?&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;// Add data to Store Locator
add_action(&#38;quot;gform_after_submission_1&#38;quot;, &#38;quot;input_fields&#38;quot;, 10, 2);
function input_fields($entry, $form){
    global $wpdb;
	$store = $entry[&#38;quot;5&#38;quot;];
	$address = $entry[&#38;quot;17.1&#38;quot;];
	$address2 = $entry[&#38;quot;17.2&#38;quot;];
	$city = $entry[&#38;quot;17.3&#38;quot;];
	$state = $entry[&#38;quot;17.4&#38;quot;];
	$zip = $entry[&#38;quot;17.5&#38;quot;];
	$email = $entry[&#38;quot;16.1&#38;quot;];
	$url = $entry[&#38;quot;8&#38;quot;];
	$phone = $entry[&#38;quot;6&#38;quot;];
   $SQL = &#38;quot;INSERT INTO wp_store_locator ( sl_id, sl_store, sl_address, sl_address2, sl_city, sl_state, sl_zip, sl_email, sl_url, sl_phone ) VALUES ( &#38;#39;&#38;#39;, &#38;#39;$store&#38;#39; , &#38;#39;$address&#38;#39;, &#38;#39;$address2&#38;#39;, &#38;#39;$city&#38;#39;, &#38;#39;$state&#38;#39;, &#38;#39;$zip&#38;#39;, &#38;#39;$email&#38;#39;, &#38;#39;$url&#38;#39;, &#38;#39;$phone&#38;#39; )&#38;quot;;
   $wpdb-&#38;gt;query($SQL);
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
