<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1024881" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1024881</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/dont-understand-what-book-telling-me#comment-1155242</link>
    <description> &lt;p&gt;I think your trying to show certian boxes checked on your results page in which case you want to do this:&lt;/p&gt;
&lt;p&gt;checked&lt;br /&gt;
&amp;gt;&lt;/p&gt;
&lt;p&gt;This wil check your boxes.. so to speak &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/tongue.png&quot; title=&quot;Sticking out tongue&quot; alt=&quot;Sticking out tongue&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 16 Jul 2004 05:35:31 +0000</pubDate>
 <dc:creator>vexcom</dc:creator>
 <guid isPermaLink="false">comment 1155242 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/dont-understand-what-book-telling-me#comment-1151957</link>
    <description> &lt;p&gt;Honestly, I don&#039;t use ColdFusion -- it seems like in making it easier they fail to explain the basics to you...&lt;/p&gt;
&lt;p&gt;Basically you would test to see if these checkboxes are selected or not, and if they are, add additional HTML to indicate that. I don&#039;t know how ColdFusion handles conditional tests.&lt;/p&gt;
 </description>
     <pubDate>Sat, 22 May 2004 19:39:32 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1151957 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/dont-understand-what-book-telling-me#comment-1151943</link>
    <description> &lt;p&gt;Thanks for the help, Suzanne.  I ended up trashing what I had built so far and went with Mr. Forta&#039;s creation at the end of chapter 13 in his book.  I tweaked it to accomodate my fields in my database.  So far everything works well except my checkbox fields.  When I click on the edit button for a certain movie, it sends the infomation to a page that populates all the information but the checkboxes that are checked in the database don&#039;t show up checked on the form.  I am wondering how to correct this.  Here is a snippit of the code used for the page:&lt;/p&gt;
&lt;p&gt;This first part is at the top of the page.&lt;/p&gt;
&lt;p&gt;            Copy Flag:&lt;/p&gt;
&lt;p&gt;This is how the fields are set up.  I know that I had to tweak the other form that I was using for checkboxes and their values but I just went with what Mr. Forta had.  I would like to be able to see the checks in the checkboxes when I edit the DVD so that I know I entered it with the correct checkboxes checked!  The fields in the database are Yes/No boxes and are not required.  It looks like I have to do something with the code to get this to work.  Any suggestions?&lt;/p&gt;
&lt;p&gt;Cori&lt;/p&gt;
 </description>
     <pubDate>Sat, 22 May 2004 17:11:04 +0000</pubDate>
 <dc:creator>cgacfox</dc:creator>
 <guid isPermaLink="false">comment 1151943 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/dont-understand-what-book-telling-me#comment-1151835</link>
    <description> &lt;p&gt;Okay, there are a few ways to send the information.&lt;/p&gt;
&lt;p&gt;In an HTML form, you&#039;d add a hidden field usually -- &lt;/p&gt;
&lt;p&gt;Or you can append it to the query string for a hyperlink -- &lt;a href=&quot;myscript.cfm?FieldID=13&quot;&gt;click here for FieldID 13&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Does that help? Without passing this information in either of these methods (POST and GET, respectively), the script cannot work.&lt;/p&gt;
 </description>
     <pubDate>Fri, 21 May 2004 00:14:19 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1151835 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/dont-understand-what-book-telling-me#comment-1151832</link>
    <description> &lt;p&gt;Suzanne:&lt;br /&gt;
I am not sure what you are saying here.  I tried appending the CFFORM action and that didn&#039;t work.  I have some more detail from the book.  Please see if this sheds some light on what I am confused about because it doesn&#039;t do it for me.&lt;/p&gt;
&lt;p&gt;&quot;To populate a form with data to be updated, you must first retrieve that row from the table.  Therefore, you must specify a FilmID to use this template.  Without it, ColdFusion would not know which row to retrieve.  To ensure that the FilmID is passed, the first thing you do is check for the existence of the FilmID parameter.  The following code returns TRUE only if FilmID was not passed, in which case an error message is sent back to the user and template processing is halted with the  tag: &lt;/p&gt;
&lt;p&gt;Without the  tag, ColdFusion continues processing the template.  An error message is generated when the  statement is processed because the WHERE clause WHERE FilmID = #URL.FilmID# references a nonexistent field.&lt;/p&gt;
&lt;p&gt;The first  tag retrieves the row to be edited, and the passed URL is used to the WHERE clause to retrieve the appropriate row&quot;(Forta, p.327).&lt;/p&gt;
&lt;p&gt;From these paragraphs, I would think that the appended FilmID would be the first instance of it in the &quot;if&quot; statement, but it doesn&#039;t work.  I wonder if I should e-mail him and ask him about this!&lt;/p&gt;
 </description>
     <pubDate>Thu, 20 May 2004 23:33:10 +0000</pubDate>
 <dc:creator>cgacfox</dc:creator>
 <guid isPermaLink="false">comment 1151832 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/web-database-development/dont-understand-what-book-telling-me#comment-1151827</link>
    <description> &lt;p&gt;&lt;a href=&quot;http://www.yourdomain.com/yourpage.cfm?FilmID=13&quot; class=&quot;bb-url&quot;&gt;http://www.yourdomain.com/yourpage.cfm?FilmID=13&lt;/a&gt; -- when you actually browse to the page...&lt;/p&gt;
 </description>
     <pubDate>Thu, 20 May 2004 23:02:17 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1151827 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
