<?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: Modifying the Entry id</title>
		<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id</link>
		<description>Gravity Support Forums Topic: Modifying the Entry id</description>
		<language>en-US</language>
		<pubDate>Thu, 30 Apr 2026 06:48:47 +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/modifying-the-entry-id" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-74965</link>
			<pubDate>Wed, 12 Sep 2012 11:42:31 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">74965@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorry @italianbird, your topic scrolled off the screen and was forgotten.  If you still need assistance with this, I posted a solution on this topic: &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/entry-ids#post-74963&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/entry-ids#post-74963&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>italianbird on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-68492</link>
			<pubDate>Sun, 29 Jul 2012 23:42:41 +0000</pubDate>
			<dc:creator>italianbird</dc:creator>
			<guid isPermaLink="false">68492@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I hope I'm replying to your request correctly. Let me know if you need me to reply using a different method(s). Basically, I haven't a clue what to do.&#60;br /&#62;
===============&#60;br /&#62;
forms_display:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;[php]
&#38;lt;?php
add_action(&#38;quot;gform_pre_submission&#38;quot;, &#38;quot;pre_submission_handler&#38;quot;);
function pre_submission_handler($form){
    $_POST[&#38;quot;input_22&#38;quot;] = &#38;quot;CT0&#38;quot;;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;pre&#62;&#60;code&#62;[php]
&#38;lt;?php
// this presumes your CT00... number is stored in field 10 in your form
// change this if it&#38;#39;s not
$invoiceID = $entry[&#38;quot;22&#38;quot;] . $entry_ID;{

// presumes you will store your created ID in field 23
// change this if not
$entry[&#38;quot;24&#38;quot;] = $invoiceID;
return $entry;
}
?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;=================&#60;br /&#62;
xml:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?xml version=&#38;quot;1.0&#38;quot; encoding=&#38;quot;UTF-8&#38;quot;?&#38;gt;
&#38;lt;forms version=&#38;quot;1.6.4.5.4&#38;quot;&#38;gt;
	&#38;lt;form labelPlacement=&#38;quot;top_label&#38;quot; useCurrentUserAsAuthor=&#38;quot;1&#38;quot;&#38;gt;
		&#38;lt;title&#38;gt;&#38;lt;![CDATA[Load Details]]&#38;gt;&#38;lt;/title&#38;gt;
		&#38;lt;confirmation type=&#38;quot;message&#38;quot;&#38;gt;
			&#38;lt;message&#38;gt;&#38;lt;![CDATA[Thank you. Your load details have been submitted.]]&#38;gt;&#38;lt;/message&#38;gt;
		&#38;lt;/confirmation&#38;gt;
		&#38;lt;button type=&#38;quot;text&#38;quot;&#38;gt;
			&#38;lt;text&#38;gt;&#38;lt;![CDATA[Submit]]&#38;gt;&#38;lt;/text&#38;gt;
		&#38;lt;/button&#38;gt;
		&#38;lt;fields&#38;gt;
			&#38;lt;field id=&#38;quot;9&#38;quot; isRequired=&#38;quot;1&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;radio&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Who are you?]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;choices&#38;gt;
					&#38;lt;choice&#38;gt;
						&#38;lt;text&#38;gt;&#38;lt;![CDATA[CT Employee]]&#38;gt;&#38;lt;/text&#38;gt;
					&#38;lt;/choice&#38;gt;
					&#38;lt;choice&#38;gt;
						&#38;lt;text&#38;gt;&#38;lt;![CDATA[Broker]]&#38;gt;&#38;lt;/text&#38;gt;
					&#38;lt;/choice&#38;gt;
				&#38;lt;/choices&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field allowsPrepopulate=&#38;quot;1&#38;quot; id=&#38;quot;22&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;
				&#38;lt;cssClass&#38;gt;&#38;lt;![CDATA[hidden]]&#38;gt;&#38;lt;/cssClass&#38;gt;
				&#38;lt;inputName&#38;gt;&#38;lt;![CDATA[invoiceID]]&#38;gt;&#38;lt;/inputName&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[CT Pro Nbr]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;2&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Customer Pro Nbr]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;3&#38;quot; isRequired=&#38;quot;1&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Truck Nbr]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;4&#38;quot; isRequired=&#38;quot;1&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;name&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Driver Name]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;inputs&#38;gt;
					&#38;lt;input id=&#38;quot;4.3&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[First]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;4.6&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Last]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
				&#38;lt;/inputs&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;14&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;html&#38;quot; displayOnly=&#38;quot;1&#38;quot;&#38;gt;
				&#38;lt;content&#38;gt;&#38;lt;![CDATA[&#38;lt;hr /&#38;gt;&#38;lt;/hr&#38;gt;]]&#38;gt;&#38;lt;/content&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[HTML Block]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;10&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Origin Name]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;11&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;address&#38;quot; addressType=&#38;quot;us&#38;quot; hideAddress2=&#38;quot;1&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Origin Address]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;defaultCountry&#38;gt;&#38;lt;![CDATA[United States]]&#38;gt;&#38;lt;/defaultCountry&#38;gt;
				&#38;lt;defaultState&#38;gt;&#38;lt;![CDATA[Tennessee]]&#38;gt;&#38;lt;/defaultState&#38;gt;
				&#38;lt;inputs&#38;gt;
					&#38;lt;input id=&#38;quot;11.1&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Street Address]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;11.2&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Address Line 2]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;11.3&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[City]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;11.4&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[State / Province]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;11.5&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Zip / Postal Code]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;11.6&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Country]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
				&#38;lt;/inputs&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;12&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;name&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Origin Contact]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;inputs&#38;gt;
					&#38;lt;input id=&#38;quot;12.3&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[First]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;12.6&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Last]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
				&#38;lt;/inputs&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;20&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;phone&#38;quot; phoneFormat=&#38;quot;standard&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Origin Phone]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;1&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;page&#38;quot; displayOnly=&#38;quot;1&#38;quot;&#38;gt;
				&#38;lt;nextButton type=&#38;quot;text&#38;quot;&#38;gt;
					&#38;lt;text&#38;gt;&#38;lt;![CDATA[Next]]&#38;gt;&#38;lt;/text&#38;gt;
				&#38;lt;/nextButton&#38;gt;
				&#38;lt;previousButton type=&#38;quot;text&#38;quot;&#38;gt;
					&#38;lt;text&#38;gt;&#38;lt;![CDATA[Previous]]&#38;gt;&#38;lt;/text&#38;gt;
				&#38;lt;/previousButton&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;16&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Destination Name]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;17&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;address&#38;quot; addressType=&#38;quot;us&#38;quot; hideAddress2=&#38;quot;1&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Destination Address]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;defaultCountry&#38;gt;&#38;lt;![CDATA[United States]]&#38;gt;&#38;lt;/defaultCountry&#38;gt;
				&#38;lt;defaultState&#38;gt;&#38;lt;![CDATA[Tennessee]]&#38;gt;&#38;lt;/defaultState&#38;gt;
				&#38;lt;inputs&#38;gt;
					&#38;lt;input id=&#38;quot;17.1&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Street Address]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;17.2&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Address Line 2]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;17.3&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[City]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;17.4&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[State / Province]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;17.5&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Zip / Postal Code]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;17.6&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Country]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
				&#38;lt;/inputs&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;18&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;name&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Destination Contact]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;inputs&#38;gt;
					&#38;lt;input id=&#38;quot;18.3&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[First]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
					&#38;lt;input id=&#38;quot;18.6&#38;quot;&#38;gt;
						&#38;lt;label&#38;gt;&#38;lt;![CDATA[Last]]&#38;gt;&#38;lt;/label&#38;gt;
					&#38;lt;/input&#38;gt;
				&#38;lt;/inputs&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;19&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;phone&#38;quot; phoneFormat=&#38;quot;standard&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Destination Phone]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;5&#38;quot; isRequired=&#38;quot;1&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;date&#38;quot; calendarIconType=&#38;quot;none&#38;quot; dateType=&#38;quot;datefield&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Pickup Date]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;6&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;time&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Pickup Time]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;7&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;date&#38;quot; calendarIconType=&#38;quot;none&#38;quot; dateType=&#38;quot;datefield&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Delivery Date]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field id=&#38;quot;8&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;time&#38;quot;&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Delivery Time]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field adminOnly=&#38;quot;1&#38;quot; id=&#38;quot;23&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;checkbox&#38;quot;&#38;gt;
				&#38;lt;adminLabel&#38;gt;&#38;lt;![CDATA[Approved?]]&#38;gt;&#38;lt;/adminLabel&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Approved? (Admin-only)]]&#38;gt;&#38;lt;/label&#38;gt;
				&#38;lt;choices&#38;gt;
					&#38;lt;choice&#38;gt;
						&#38;lt;text&#38;gt;&#38;lt;![CDATA[Approved]]&#38;gt;&#38;lt;/text&#38;gt;
					&#38;lt;/choice&#38;gt;
				&#38;lt;/choices&#38;gt;
				&#38;lt;hideInDirectory&#38;gt;&#38;lt;![CDATA[1]]&#38;gt;&#38;lt;/hideInDirectory&#38;gt;
				&#38;lt;hideInSingle&#38;gt;&#38;lt;![CDATA[1]]&#38;gt;&#38;lt;/hideInSingle&#38;gt;
			&#38;lt;/field&#38;gt;
			&#38;lt;field allowsPrepopulate=&#38;quot;1&#38;quot; id=&#38;quot;24&#38;quot; size=&#38;quot;medium&#38;quot; type=&#38;quot;text&#38;quot;&#38;gt;
				&#38;lt;inputName&#38;gt;&#38;lt;![CDATA[internalID]]&#38;gt;&#38;lt;/inputName&#38;gt;
				&#38;lt;label&#38;gt;&#38;lt;![CDATA[Untitled]]&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/field&#38;gt;
		&#38;lt;/fields&#38;gt;
		&#38;lt;descriptionPlacement&#38;gt;&#38;lt;![CDATA[below]]&#38;gt;&#38;lt;/descriptionPlacement&#38;gt;
		&#38;lt;lastPageButton type=&#38;quot;text&#38;quot;&#38;gt;
			&#38;lt;text&#38;gt;&#38;lt;![CDATA[Previous]]&#38;gt;&#38;lt;/text&#38;gt;
		&#38;lt;/lastPageButton&#38;gt;
		&#38;lt;pagination type=&#38;quot;steps&#38;quot;&#38;gt;
			&#38;lt;pages&#38;gt;
				&#38;lt;page&#38;gt;&#38;lt;![CDATA[Administrative Stuff]]&#38;gt;&#38;lt;/page&#38;gt;
				&#38;lt;page&#38;gt;&#38;lt;![CDATA[Load Details]]&#38;gt;&#38;lt;/page&#38;gt;
			&#38;lt;/pages&#38;gt;
		&#38;lt;/pagination&#38;gt;
		&#38;lt;requireLogin&#38;gt;&#38;lt;![CDATA[1]]&#38;gt;&#38;lt;/requireLogin&#38;gt;
		&#38;lt;requireLoginMessage&#38;gt;&#38;lt;![CDATA[You must be logged in to submit new entries or view records.]]&#38;gt;&#38;lt;/requireLoginMessage&#38;gt;
		&#38;lt;notification&#38;gt;
			&#38;lt;to&#38;gt;&#38;lt;![CDATA[donbowins@gmail.com]]&#38;gt;&#38;lt;/to&#38;gt;
			&#38;lt;subject&#38;gt;&#38;lt;![CDATA[New submission from {form_title}]]&#38;gt;&#38;lt;/subject&#38;gt;
			&#38;lt;message&#38;gt;&#38;lt;![CDATA[{all_fields}]]&#38;gt;&#38;lt;/message&#38;gt;
		&#38;lt;/notification&#38;gt;
	&#38;lt;/form&#38;gt;
&#38;lt;/forms&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-68037</link>
			<pubDate>Thu, 26 Jul 2012 07:09:06 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">68037@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;strike&#62;The code above is not really code; more of an approach on how to do it.  Please post your code at pastebin.com or pastie.org in its entirety and we'll take a look at it for you.  Please also export your form as XML (Forms menu &#38;gt; Import/Export &#38;gt; &#34;Export Forms&#34; from the top menu) so that we can reference the actual field IDs.  Thank you.&#60;/strike&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>italianbird on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-68013</link>
			<pubDate>Wed, 25 Jul 2012 23:45:37 +0000</pubDate>
			<dc:creator>italianbird</dc:creator>
			<guid isPermaLink="false">68013@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;&#60;strike&#62;It's probably just me, but the code above isn't working. I can not seem to make the entry ID appear.&#60;/strike&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-67930</link>
			<pubDate>Wed, 25 Jul 2012 14:10:45 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">67930@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;UPDATE 12 September 2012: &#60;/p&#62;
&#60;p&#62;The original post  I made here was incorrect.  Please see this topic for an updated solution:  &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/entry-ids#post-74963&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/entry-ids#post-74963&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Thank you.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>italianbird on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-67913</link>
			<pubDate>Wed, 25 Jul 2012 13:07:02 +0000</pubDate>
			<dc:creator>italianbird</dc:creator>
			<guid isPermaLink="false">67913@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The hidden field is rendering CT00... or whatever I want. How do I append the entry ID to the end of the hidden field?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-67900</link>
			<pubDate>Wed, 25 Jul 2012 12:42:12 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">67900@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What did you store in your hidden field?&#60;/p&#62;
&#60;p&#62;And how do you want to add the entry ID to that?  Just append the entry ID to the end of your hidden field?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>italianbird on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-67819</link>
			<pubDate>Tue, 24 Jul 2012 22:59:55 +0000</pubDate>
			<dc:creator>italianbird</dc:creator>
			<guid isPermaLink="false">67819@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Ok, I like where the gform_pre_submission thing is going. I got that working using a hidden field. Now, how can I add (or copy) the entry id# to the field?
&#60;/p&#62;</description>
		</item>
		<item>
			<title>David Peralty on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-67807</link>
			<pubDate>Tue, 24 Jul 2012 20:58:09 +0000</pubDate>
			<dc:creator>David Peralty</dc:creator>
			<guid isPermaLink="false">67807@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You would have to create a function. I would create an input field in Gravity Forms called internalID. I would then give it a CSS class of hidden. I would then check off allow populate dynamically. I would give it a parameter name of internalID as well. I would edit my css to have &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;.hidden { display:none; }&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You could then using some PHP code create a function to fill this field out automatically. You would have to connect to the database, and check what was the last number assigned, add one to the number and then pre-populate that field with your new value, but coming up with this custom code is beyond the support I can provide here. &#60;/p&#62;
&#60;p&#62;The hook to pre-fill a field is:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_render&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_render&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;So then you would have a number generated based on the last number used, assign the value to a hidden field, and then when you export the data, you could easily sort it by the internalID field.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Modifying the Entry id"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/modifying-the-entry-id#post-67805</link>
			<pubDate>Tue, 24 Jul 2012 20:52:30 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">67805@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can create a function that auto-generates your CT*** number, and store that with the entry.  I would use the gform_pre_submission filter.  &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_pre_submission&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Gform_pre_submission&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;That is called after the form is submitted and all fields are validated, but before the entry is stored.  You can generate your number and return it so that it is stored with the entry.  &#60;/p&#62;
&#60;p&#62;There are multiple ways to do it.  David P posted another possible solution right after I did.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
