<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1015892" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1015892</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hidden-fields-0#comment-1092141</link>
    <description> &lt;p&gt;Hi larryb,&lt;/p&gt;
&lt;p&gt;  In the case of the example you gave:&lt;/p&gt;
&lt;p&gt;  value=&#039;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&lt;span style=&quot;color: #000000&quot;&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;&amp;lt;?php&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: #007700&quot;&gt;=&lt;/span&gt;&lt;span style=&quot;color: #0000BB&quot;&gt;strMgrLocalMkt&lt;br /&gt;?&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/div&gt;&#039;  -- the double quotes will remain within the single quotes&lt;/p&gt;
&lt;p&gt;  If you do not know whether the quotes are single or double you will need to call a function that inserts an escape character before each quote, something like:&lt;/p&gt;
&lt;p&gt;function addEscape(fldValue)&lt;br /&gt;
{&lt;br /&gt;
  dquote = &#039;&quot;&#039;;&lt;br /&gt;
  squote = &quot;&#039;&quot;;&lt;br /&gt;
  retVal = &quot;&quot;;&lt;br /&gt;
  for (i=0; i &amp;lt; fldValue.length; i++)&lt;br /&gt;
  {&lt;br /&gt;
     if ((fldValue.substr(i,i+1) == dquote)||(fldValue.substr(i,i+1) == squote))&lt;br /&gt;
     retVal += &quot;\&quot; + fldValue.substr(i,i+1);&lt;br /&gt;
     else&lt;br /&gt;
     retVal += fldValue.substr(i,i+1);&lt;br /&gt;
  }&lt;br /&gt;
  return (retVal);&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Vinny&lt;/p&gt;
 </description>
     <pubDate>Mon, 22 Oct 2001 21:24:31 +0000</pubDate>
 <dc:creator>Vincent Puglia</dc:creator>
 <guid isPermaLink="false">comment 1092141 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/hidden-fields-0#comment-1092120</link>
    <description> &lt;p&gt;You are right about the cause of the problem. But Its got nothing to do with the hidden type of input field. Any input field with behave the same way. The string value of the input field is everything between the quotes which in your case  ends just before the word &#039;moving&#039;.&lt;/p&gt;
&lt;p&gt;The solution is to use &amp;quote; or &amp;#34; instead of actual quote marks in your string. These guys are presented on the browser as quote marks. But they aren&#039;t interpreted in your code as quote marks.&lt;/p&gt;
&lt;p&gt;Hope this helps&lt;/p&gt;
 </description>
     <pubDate>Mon, 22 Oct 2001 19:02:55 +0000</pubDate>
 <dc:creator>akohl</dc:creator>
 <guid isPermaLink="false">comment 1092120 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
