<?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: Dynamic Input Names and Id&#039;s</title>
		<link>https://legacy.forums.gravityhelp.com/topic/dynamic-input-names-and-id</link>
		<description>Gravity Support Forums Topic: Dynamic Input Names and Id&#039;s</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 11:56:07 +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/dynamic-input-names-and-id" rel="self" type="application/rss+xml" />

		<item>
			<title>ckemp23 on "Dynamic Input Names and Id&#039;s"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamic-input-names-and-id#post-80705</link>
			<pubDate>Sat, 13 Oct 2012 02:08:16 +0000</pubDate>
			<dc:creator>ckemp23</dc:creator>
			<guid isPermaLink="false">80705@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Will do. Thanks, Chris.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Dynamic Input Names and Id&#039;s"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamic-input-names-and-id#post-80632</link>
			<pubDate>Fri, 12 Oct 2012 15:33:14 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80632@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;If you need help with your next approach please let us know.  Looks like you have the skills to pull it off no matter which approach you take.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ckemp23 on "Dynamic Input Names and Id&#039;s"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamic-input-names-and-id#post-80627</link>
			<pubDate>Fri, 12 Oct 2012 15:22:23 +0000</pubDate>
			<dc:creator>ckemp23</dc:creator>
			<guid isPermaLink="false">80627@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Chris, &#60;/p&#62;
&#60;p&#62;Thanks for your quick response. I appreciate it.&#60;br /&#62;
It does make sense now that my approach was futile.&#60;/p&#62;
&#60;p&#62;Thanks!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Dynamic Input Names and Id&#039;s"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamic-input-names-and-id#post-80611</link>
			<pubDate>Fri, 12 Oct 2012 14:44:19 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">80611@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It looks like you took the static output of a Gravity Form and then included the rendered HTML in your function to create the table?  Is that correct?  All the code here &#60;a href=&#34;http://pastebin.com/dwH52Tf9&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/dwH52Tf9&#60;/a&#62; is included in a page somehow?&#60;/p&#62;
&#60;p&#62;Gravity Forms is not designed to be used like this.  You could do something like this by pre-populating your Gravity Form with data pulled from your database, using the gform_pre_render filter, but you can't dynamically add items to a form using code the way you've done it here.  The form will not work properly or record entries properly.  It seems to me you've used the wrong approach.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>ckemp23 on "Dynamic Input Names and Id&#039;s"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamic-input-names-and-id#post-80597</link>
			<pubDate>Fri, 12 Oct 2012 14:17:39 +0000</pubDate>
			<dc:creator>ckemp23</dc:creator>
			<guid isPermaLink="false">80597@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi all,&#60;/p&#62;
&#60;p&#62;I'm going to do my best to describe what I'm attempting to do, and what I've done, but, please let me know if you need more information to provide help.&#60;/p&#62;
&#60;p&#62;What I'm trying to do is create an html table that has 5 columns and any number of rows. It's a very basic order form that will list literature that we have for sale. The first 4 columns provide information about the item, and the 5th column is a simply text input &#34;qty&#34; field that allows a user to enter the &#34;qty&#34; of the item they wish to purchase. You can see what this looks like here: &#60;a href=&#34;http://web.go-spi.com/cgl/literature/&#34; rel=&#34;nofollow&#34;&#62;http://web.go-spi.com/cgl/literature/&#60;/a&#62;.&#60;/p&#62;
&#60;p&#62;It's important to note that the table is generated dynamically, via a custom loop that I've created in Wordpress. I did it this way to allow us to dynamically add or remove literature items from the table.&#60;/p&#62;
&#60;p&#62;The code:&#60;br /&#62;
&#60;a href=&#34;http://pastebin.com/dwH52Tf9&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/dwH52Tf9&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The problem:&#60;/p&#62;
&#60;p&#62;1) I'm not sure how to dynamically set the input name and id so that they are sequential as you go down the form. Currently, as the code is set up, I'll only receive the submitted value of the first input no matter how many inputs are filled in.&#60;/p&#62;
&#60;p&#62;I appreciate any help you can provide. Thanks!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
