<?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: Validating using Query String</title>
		<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string</link>
		<description>Gravity Support Forums Topic: Validating using Query String</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 07:43:32 +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/validating-using-query-string" rel="self" type="application/rss+xml" />

		<item>
			<title>rsigg on "Validating using Query String"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string#post-29570</link>
			<pubDate>Sun, 10 Jul 2011 14:55:12 +0000</pubDate>
			<dc:creator>rsigg</dc:creator>
			<guid isPermaLink="false">29570@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Are you using this dynamically populate a field via the query string?&#60;br /&#62;
I'm using mine to populate a hidden field, and nothing shows if I encode the ampersand.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hiranthi on "Validating using Query String"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string#post-29562</link>
			<pubDate>Sun, 10 Jul 2011 05:13:52 +0000</pubDate>
			<dc:creator>Hiranthi</dc:creator>
			<guid isPermaLink="false">29562@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am using '&#38;amp; amp;' (without the space inbetween ofcourse) in the pre-populate URLs without issues.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rsigg on "Validating using Query String"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string#post-29554</link>
			<pubDate>Sat, 09 Jul 2011 17:51:51 +0000</pubDate>
			<dc:creator>rsigg</dc:creator>
			<guid isPermaLink="false">29554@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I understand that my site isn't broken and that validation is a guideline.&#60;/p&#62;
&#60;p&#62;However, I find it very strange that if I pass my form an encoded URL it will parse a string like &#34;Test+String&#34; correctly as &#34;Test String&#34; but will not decode an encoded ampersand.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Validating using Query String"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string#post-28989</link>
			<pubDate>Fri, 01 Jul 2011 15:54:56 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">28989@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;What settings and version are you using for W3C validation? XHTML Strict? XHTML Transitional? HTML 5?  There are a variety and each different.&#60;/p&#62;
&#60;p&#62;Also, any validation isn't a strict rule, it's a guideline.  Your site isn't broken if it doesn't validate.  All browsers are going to handle that URL just fine.  It's not going to pose a technical issue or a user issue if that page doesn't validate because of the URL.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rsigg on "Validating using Query String"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string#post-28965</link>
			<pubDate>Fri, 01 Jul 2011 14:49:04 +0000</pubDate>
			<dc:creator>rsigg</dc:creator>
			<guid isPermaLink="false">28965@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Sorry, I meant up there that:&#60;br /&#62;
I replace '&#38;amp;line' with the 'entityline' (this box won't let me put the entity for &#38;amp;, even if I put it in backticks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rsigg on "Validating using Query String"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/validating-using-query-string#post-28632</link>
			<pubDate>Mon, 27 Jun 2011 19:42:22 +0000</pubDate>
			<dc:creator>rsigg</dc:creator>
			<guid isPermaLink="false">28632@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;br /&#62;
I am getting errors on the W3C validator for not encoding my entire query string.&#60;/p&#62;
&#60;p&#62;Here's an example of my url and the errors:&#60;br /&#62;
&#60;a href=&#34;http://mydomain.com/request-information/?itin=Small+Ship+Cruise&#38;amp;line=Cruise+Line&#34; rel=&#34;nofollow&#34;&#62;http://mydomain.com/request-information/?itin=Small+Ship+Cruise&#38;amp;line=Cruise+Line&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Error: &#34;General entity &#34;line&#34; not defined and no default entity. This is usually a cascading error caused by a an undefined entity reference or use of an unencoded ampersand (&#38;amp;) in an URL or body text.&#34;&#60;br /&#62;
As you can see in the string, I have encoded the rest of the string.&#60;br /&#62;
However I replace '&#38;amp;line' with '&#38;amp;line' then the field does not dynamically populate at all. The 'itin' field still populates correctly.&#60;/p&#62;
&#60;p&#62;I feel like I must be doing something really stupid since I can't find any topics on the forums or the GoogleMachine...&#60;/p&#62;
&#60;p&#62;Help please...&#60;br /&#62;
Thanks in advance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
