I am trying to create a simple poll for a tshirt selection.  How can I create 
the code where I can post the results of the poll with the total count for each 
tshirt for each vote selected into MS Access database?  What is missing? Code 
is below.  
Thanks!   

   

<cfform name="tshirt poll" action="" method="post">
<table width="349" height="281" align="center" cellpadding="10" cellspacing="0">
  
  <tr>
    <td width="282">  <div align="center">T-Shirt #1 </div></td>
    <td width="25"><input type="radio" name="radio" value="1"> </td>
  </tr>  

  <tr>
    <td>  <div align="center">T-Shirt #2 </div></td>
    <td><input name="radio" type="radio" value="1"/></td>
  </tr>
  
   <tr>
    <td>  <div align="center">T-Shirt #3 </div></td>
    <td><input name="radio" type="radio" value="1"/></td>
  </tr>
  
   <tr>
    <td>  <div align="center">T-Shirt #4 </div></td>
    <td><input name="radio" type="radio" value="1"/></td>
  </tr>
  
   <tr>
    <td>  <div align="center">T-Shirt #5 </div></td>
    <td><input name="radio" type="radio" value="1"/></td>
  </tr>  

   

<div align="center">
    
      
            <div align="center"></div>
            <tr>
    <td align="center"><cfinput type="submit" name="Submit" value="Submit"></td>
  </tr>
         
</div>
</table>
</cfform>

  

Scott Clayton
Programmer/Analyst
  
 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-newbie/message.cfm/messageid:5341
Subscription: http://www.houseoffusion.com/groups/cf-newbie/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-newbie/unsubscribe.cfm

Reply via email to