473,395 Members | 1,653 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Insert List menu values to Mysql

Hi,

Please help me find out what wrong with my codes in inputting from my form to mysql database using drop down menu. Below is the codes I used. Only the drop down is not working but the "input text" are successfully adding data to mysql. I just try first using the month as drop down. The month data type I used in mysql database is varchar. Im new in PHP please help me. Thanks
Expand|Select|Wrap|Line Numbers
  1. <?php /* Created on: 10/12/2006 */ ?>
  2. <html>
  3. <body>
  4. <?php
  5. include ('./header.php');
  6. include ('./menu1.php');
  7. if (isset($_POST['submit'])) { //handle the form
  8.  
  9.     if ($dbc = mysql_connect ('localhost', 'root', 'jan03001')) {
  10.  
  11.     if (!@mysql_select_db ('hris')) {
  12.         die ('<p>Could not select the database because: <b>' . mysql_error() . '</b></p>');    
  13.     }
  14. } else {
  15.         die ('<p>Could not could not connect to Mysql because: <b>' . mysql_error() . '</b></p>');
  16.  
  17.  
  18. //define the query
  19. $query = "INSERT INTO personlinfotbl2 (empid, firstname, lastname, bmonth) VALUES ('{$_POST[empid]}', '{$_POST['firstname']}', '{$_POST['lastname']}', '{$_POST['bmonth']}')";
  20.  
  21. //execute the query
  22. if (mysql_query ($query)) {
  23.     print '<p> <center><font face="arial" color="red" size="3">The Personal Information entry has been added. Continue to add data. </font></center></p>';
  24.     } else {
  25.     print '<p> <center><font face="arial" color="red" size="3">Could not add the entry because: <b>" . mysql_error() . "<b>. The query was $query.</font></center></p>';
  26.     } 
  27.  
  28. mysql_close(); 
  29. }
  30.  
  31. //display the form
  32. ?> 
  33. <form action="add_personalinfo2.php" method="post">
  34. <center>
  35. <table width=44% align="center">
  36.     <tr>
  37.  
  38.         <td colspan=3><b>Fill-up this form to add Personal Information</b></td>
  39.     </tr>
  40.     <tr>
  41.         <td>Employee Number: </td><td><input type="text" name="empid" size="28" maxsize="100" /></td>
  42.     </tr>
  43.     <tr>
  44.         <td>First Name: </td><td><input type="text" name="firstname" size="28" maxsize="100" /></td>
  45.     </tr>
  46.     <tr>
  47.         <td>Last Name: </td><td><input type="text" name="lastname" size="28" maxsize="100" /></td>
  48.     </tr>
  49.     <tr>
  50.         <td>Birth Date: </td>
  51.         <td>
  52.                 <select name="month">
  53.             <option value="January">January</option>
  54.               <option value="February">February</option>
  55.               <option value="March">March</option>
  56.               <option value="April">April</option>
  57.               <option value="May">May</option>
  58.               <option value="June">June</option>
  59.               <option value="July">July</option>
  60.               <option value="August">August</option>
  61.               <option value="September">September</option>
  62.               <option value="October">October</option>
  63.               <option value="November">November</option>
  64.               <option value="December">December</option>
  65.                 </select></td>
  66.     </tr>
  67.     <tr>
  68.         <td colspan=2><input type="submit" name="submit" value="Add to Personal Info Table" />
  69.     <input type='reset' name='reset' value='Reset'></td>
  70.     </tr>
  71.  
  72. </table>
  73. </center>
  74.  
  75. </form>
  76. <?php
  77. include ('./footer.php');
  78. ?>
  79. </body>
  80. </html>
  81.  
Jul 17 '07 #1
7 2486
ak1dnar
1,584 Expert 1GB
Hey,
Welcome to TSDN !

List menu name is month But In your corresponding $_POST var is bmonth
That's the problem.

-Ajaxrand
Jul 17 '07 #2
ak1dnar
1,584 Expert 1GB
Thread Title changed

Ealier: Query re: drop down in php
Recent: Insert List menu values to Mysql
Jul 17 '07 #3
Hi! I I am new here, Great community BTW, and thought I'd post my first question. and having been studying this language. I am toying around with Dongletran's script and modified it a bit just to get some practice in, and came to an error that has stumped me. Upon submitting, I get this message "Could not add the entry because: " . mysql_error() . ". The query was $query." This doesn't make sense to me, I understand its trying to reference my query, but I don't see how (if that makes sense) I'm trying to figure out why this happens. Anyone experience anything similar?
Aug 15 '07 #4
Purple
404 Expert 256MB
Hi Superpie and welcome to TSDN,

You are getting that message because the mySQL insert on line 20 appear to have failed. My wild guess is you have not set the mySQL table up correctly. The insert is executed on line 23 and the sucess or failure drives which message is written to the clients browser.

Hope that helps

Purple
Aug 15 '07 #5
Thanks Purple

Based on what you told me, I checked the lines where you said and sure enough noticed some errors. Now everything works flawlessly. Thanks once again!
Aug 15 '07 #6
Purple
404 Expert 256MB
Superpie,

I am please we could help,

We look forward to seeing you around TSDN PHP forum again soon

Regards Purple
Aug 15 '07 #7
I tried adapting Dongletran's script for my database, but am having major trouble implementing it. I read and re-read and compared my original to his original and found everything is where it should be. I get the same exact error message as superpie " . mysql_error() . ". The query was $query." I tried applying his/Purples solution and I still receive that message. I've just about pulled out all my hair. Perhaps I have misread something on my own script. Hopefully its a simple fix-- Ive rebuilt my script 2 times already :( Please tell me if I am doing anything wrong.

Expand|Select|Wrap|Line Numbers
  1. <html>
  2. <body>
  3. <?php
  4. if (isset($_POST['submit'])) { //handle the form
  5. if ($dbc = mysql_connect ('localhost', 'mylogin', 'mypassword')) {
  6. if (!@mysql_select_db ('mydatabase')) {
  7. die ('<p>Could not select the database because: <b>' . mysql_error() . '</b></p>');   
  8. }
  9. } else {
  10. die ('<p>Could not could not connect to Mysql because: <b>' . mysql_error() . '</b></p>');
  11. }
  12. //define the query
  13. $query = "INSERT INTO registration (type, fname, lname, title, empnum, address, city, state, zip, h1, h2, h3, c1, c2, c3, 
  14. email, email2, accommodations, pay, checknum, comments, Morning-First-choice, Morning-Second-choice, Morning-Third-choice,
  15.  Morning-Fourth-choice, Morning-Fifth-choice, Midmorning-First-choice, Midmorning-Second-choice, Midmorning-Third-choice,
  16.  Midmorning-Fourth-choice, Midmorning-Fifth-choice, Afternoon-First-choice, Afternoon-Second-choice, Afternoon-Third-choice,
  17.  Afternoon-Fourth-choice, Afternoon-Fifth-choice, dateandtime) VALUES ('{$_POST['type']}','{$_POST['fname']}','{$_POST['lname']}','{$_POST['title']}','{$_POST['empnum']}','{$_POST['address']}','{$_POST['city']}','{$_POST['state']}','{$_POST['zip']}','{$_POST['h1']}','{$_POST['h2']}','{$_POST['h3']}','{$_POST['c1']}','{$_POST['c2']}','{$_POST['c3']}','{$_POST['email']}','{$_POST['email2']}','{$_POST['accommodations']}','{$_POST['pay']}','{$_POST['checknum']}','{$_POST['comments']}','{$_POST['Morning-First-choice']}','{$_POST['Morning-Second-choice']}','{$_POST['Morning-Third-choice']}','{$_POST['Morning-Fourth-choice']}','{$_POST['Morning-Fifth-choice']}','{$_POST['Midmorning-First-choice']}','{$_POST['Midmorning-Second-choice']}','{$_POST['Midmorning-Third-choice']}','{$_POST['Midmorning-Fourth-choice']}','{$_POST['Midmorning-Fifth-choice']}','{$_POST['Afternoon-First-choice']}','{$_POST['Afternoon-Second-choice']}','{$_POST['Afternoon-Third-choice']}','{$_POST['Afternoon-Fourth-choice']}','{$_POST['Afternoon-Fifth-choice']}','{$_POST['dateandtime']}')";
  18. //execue the query
  19. if (mysql_query ($query)) {
  20. print '<p><font size="5"><br>
  21.  
  22. Thank you for entering this registration. We appreciate your effort.
  23. <p>
  24. <b>
  25. <b>
  26. <font size="3">If you are at another location, feel free to input you data for the month</font><p>
  27. ';
  28. } else {
  29. print '<p> <center><font face="arial" color="red" size="3">Could not add the entry because: <b>" . mysql_error() . "<b>. The query was $query.</font></center></p>';
  30. }
  31. mysql_close();
  32. }
  33. //display the form
  34. ?>
  35. <form name="myForm" action="post.php" method="post">
  36. <TABLE border=4 CELLPADDING=0 CELLSPACING=0 width="100%">
  37. <tr><td bgcolor=lightblue><Center>
  38.   <p><font size="6">Registration</font></Center></p>
  39.   </td>
  40. </table>
  41. <table border="4" cellspacing="1" style="border-collapse: collapse" bordercolor="#111111" width="100%" height="227">
  42.   <tr>
  43.     <td width="17%" height="1" align="right"><font size="5">Registration Type&nbsp;&nbsp;
  44.     </font> </td>
  45.     <td width="62%" align="center" height="1" colspan="2">
  46. <p align="left">
  47. <input type="radio" value="Presenter" name="type" checked>workshop Staff&nbsp;&nbsp;&nbsp;
  48. <input type="radio" value="workshop Staff" name="type">Presenter&nbsp;&nbsp;&nbsp;
  49. <input type="radio" value="Non workshop staff" name="type">Non Staff&nbsp;&nbsp;&nbsp;&nbsp;
  50. <input type="radio" value="Intern" name="type">Intern&nbsp;&nbsp;&nbsp;&nbsp;
  51. <br>
  52.     </td>
  53.   </tr>
  54.   <tr>
  55.     <td width="17%" height="27" align="right"><font size="5">First Name </td>
  56.     <td width="17%" align="center" height="27"><input type="text" name="fname" size="24"> </td>
  57.     <td width="45%" rowspan="4" height="120">&nbsp;<p>&nbsp;</p>
  58.     <p>&nbsp;</td>
  59.   </tr>
  60.   <tr>
  61.     <td width="17%" height="27" align="right"><font size="5">Last Name</td>
  62.     <td width="17%" align="center" height="27"><input type="text" name="lname" size="24"></td>
  63.   </tr>
  64.   <tr>
  65.     <td width="17%" height="27" align="right"><font size="5">Title</td>
  66.     <td width="17%" align="center" height="27"><input type="text" name="title" size="24"></td>
  67.   </tr>
  68.   <tr>
  69.     <td width="17%" height="27" align="right"><font size="5">Employee Number</td>
  70.     <td width="17%" align="center" height="27"><input type="text" name="empnum" size="24"></td>
  71.   </tr>
  72.   <tr>
  73.     <td width="34%" colspan="2" height="19" align="right">&nbsp;</td>
  74.   </tr>
  75.   <tr>
  76.     <td width="17%" height="19" align="right"><font size="5">Address</font></td>
  77.     <td width="17%" align="center" height="19">
  78.     <input type="text" name="address" size="25"></td>
  79.   </tr>
  80.   <tr>
  81.     <td width="17%" height="19" align="right"><font size="5">City</font></td>
  82.     <td width="17%" align="center" height="19">
  83.     <input type="text" name="city" size="25"></td>
  84.   </tr>
  85.   <tr>
  86.     <td width="17%" height="19" align="right"><font size="5">State</font></td>
  87.     <td width="17%" align="center" height="19">
  88. <Table>
  89. <td width="17%" align="center" height="27">
  90. <select name="state">
  91. <option value="AZ">Arizona
  92. <option value="CA" Selected>California
  93. <option value="CO">Colorado
  94. </select></td>
  95. </Table>
  96.      </td>
  97.   </tr>
  98.   <tr>
  99.     <td width="17%" height="19" align="right"><font size="5">Zip</font></td>
  100.     <td width="17%" align="center" height="19">
  101.     <input type="text" name="zip" size="26"></td>
  102.   </tr>
  103.   <tr>
  104.     <td width="17%" height="19" align="right"><font size="5">Phone Number</font></td>
  105.     <td width="17%" align="center" height="19">
  106. <input name="h1" size="4" maxlength="3"> - 
  107. <input name="h2" size="4" maxlength="3"> - 
  108. <input name="h3" size="5" maxlength="4">
  109.     </td>
  110.   </tr>
  111.   <tr>
  112.     <td width="17%" height="19" align="right"><font size="5">Mobile Number</font></td>
  113.     <td width="17%" align="center" height="19">
  114. <input name="c1" size="4" maxlength="3"> - 
  115. <input name="c2" size="4" maxlength="3"> - 
  116. <input name="c3" size="5" maxlength="4"></td>
  117.   </tr>
  118.   <tr>
  119.     <td width="17%" height="19" align="right"><font size="5">Email</font></td>
  120.     <td width="17%" align="center" height="19">
  121.     <input name="email" class="thin" type="text" name="email" size="26">
  122. </td>
  123.   </tr>
  124.   <tr>
  125.     <td width="17%" height="19" align="right"><font size="5">Verify Email</font></td>
  126.     <td width="17%" align="center" height="19">
  127.     <input name="email2" class="thin" type="text" name="email2" size="26"> </td>
  128.   </tr>
  129.   <tr>
  130.     <td width="17%" height="19" align="right"><font size="5">Accommodations</font></td>
  131.     <td width="17%" align="center" height="19">
  132.     <input type="text" name="accommodations" Value="None" maxlength="254" size="26">
  133.   </td>
  134.   </tr>
  135.   </font>
  136. </table>
  137.  
  138. <TABLE border=4 CELLPADDING=0 CELLSPACING=0 width="100%">
  139. <tr><td bgcolor=lightblue><Center>
  140. <font size="6">Payments</font>
  141.   </td>
  142. </font><br>
  143. </tr></td>
  144. </table>
  145.  
  146. <table border="4" cellspacing="1" bordercolor="#111111" width="100%" height="66">
  147.   <tr>
  148.     <td width="119" align="center" height="19">&nbsp;</td>
  149.     <td width="55" align="center" height="19"><b>Early</b></td>
  150.     <td width="59" align="center" height="19"><b>Regular</b></td>
  151.     <td width="59" align="center" height="19"><b>Comped</b></td>
  152.     <td width="86" align="center" height="19"><b>Check #</b></td>
  153.     <td width="503" align="center" height="19">Comments (255 chars max)</td>
  154.   </tr>
  155.   <tr>
  156.     <td width="119" align="center" height="1">workshop Staff</td>
  157.     <td width="55" align="center" height="1"><input type="radio" value="Staff-early-60" name="pay">$60</td>
  158.     <td width="59" align="center" height="1"><input type="radio" value="Staff-regular-80" name="pay">$80</td>
  159.     <td width="59" align="center" height="1"><input type="radio" value="Staff-Comped" name="pay">Free</td>
  160.     <td width="86" align="center" height="28" rowspan="3">
  161.     <input type="text" name="checknum" size="10"></td>
  162.     <td width="503" align="center" height="28" rowspan="3">
  163.     <textarea rows="4" name="comments" cols="61"></textarea><br>
  164. </td>
  165.   </tr>
  166.   <tr>
  167.     <td width="119" align="center" height="6">Non-workshop Staff</td>
  168.     <td width="55" align="center" height="6"><input type="radio" value="Non-Staff-early-100" name="pay">$100</td>
  169.     <td width="59" align="center" height="6"><input type="radio" value="Non-Staff-regular-120" name="pay">$120</td>
  170.     <td width="59" align="center" height="6"><input type="radio" value="Non-Staff-Comped" name="pay">Free</td>
  171.   </tr>
  172.   <tr>
  173.     <td width="119" align="center" height="1">Presenters</td>
  174.     <td width="55" align="center" height="1">X</td>
  175.     <td width="59" align="center" height="1">X</td>
  176.     <td width="59" align="center" height="1"><input type="radio" value="Presenter" name="pay">Free</td>
  177.   </tr>
  178.   </table>
  179. <br>&nbsp;<table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  180.   <tr>
  181.     <td width="31" align="center">1st</td>
  182.     <td width="29" align="center">2nd</td>
  183.     <td width="31" align="center">3rd</td>
  184.     <td width="32" align="center">4rth</td>
  185.     <td width="29" align="center">5th</td>
  186.     <td width="780">&nbsp;</td>
  187.   </tr>
  188.   <tr>
  189.     <td width="31" align="center"><input type="radio" value="1A" name="Morning-First-choice" checked></td>
  190.     <td width="29" align="center"><input type="radio" value="1A" name="Morning-Second-choice" checked></td>
  191.     <td width="31" align="center"><input type="radio" value="1A" name="Morning-Third-choice" checked></td>
  192.     <td width="32" align="center"><input type="radio" value="1A" name="Morning-Fourth-choice" checked></td>
  193.     <td width="29" align="center"><input type="radio" value="1A" name="Morning-Fifth-choice" checked></td>
  194.     <td width="780">&nbsp;</td>
  195.   </tr>
  196.   <tr>
  197.     <td width="31" align="center"><input type="radio" value="2A" name="Morning-First-choice"></td>
  198.     <td width="29" align="center"><input type="radio" value="2A" name="Morning-Second-choice"></td>
  199.     <td width="31" align="center"><input type="radio" value="2A" name="Morning-Third-choice"></td>
  200.     <td width="32" align="center"><input type="radio" value="2A" name="Morning-Fourth-choice"></td>
  201.     <td width="29" align="center"><input type="radio" value="2A" name="Morning-Fifth-choice"></td>
  202.     <td width="780">&nbsp;</td>
  203.   </tr>
  204.   <tr>
  205.     <td width="31" align="center"><input type="radio" value="3A" name="Morning-First-choice"></td>
  206.     <td width="29" align="center"><input type="radio" value="3A" name="Morning-Second-choice"></td>
  207.     <td width="31" align="center"><input type="radio" value="3A" name="Morning-Third-choice"></td>
  208.     <td width="32" align="center"><input type="radio" value="3A" name="Morning-Fourth-choice"></td>
  209.     <td width="29" align="center"><input type="radio" value="3A" name="Morning-Fifth-choice"></td>
  210.     <td width="780">&nbsp;</td>
  211.   </tr>
  212.   <tr>
  213.     <td width="31" align="center">
  214.     <input type="radio" value="4A" name="Morning-First-choice"></td>
  215.     <td width="29" align="center"><input type="radio" value="4A" name="Morning-Second-choice"></td>
  216.     <td width="31" align="center"><input type="radio" value="4A" name="Morning-Third-choice"></td>
  217.     <td width="32" align="center"><input type="radio" value="4A" name="Morning-Fourth-choice"></td>
  218.     <td width="29" align="center"><input type="radio" value="4A" name="Morning-Fifth-choice"></td>
  219.     <td width="780">&nbsp;</td>
  220.   </tr>
  221.   <tr>
  222.     <td width="31" align="center">
  223.     <input type="radio" value="5A" name="Morning-First-choice"></td>
  224.     <td width="29" align="center"><input type="radio" value="5A" name="Morning-Second-choice"></td>
  225.     <td width="31" align="center"><input type="radio" value="5A" name="Morning-Third-choice"></td>
  226.     <td width="32" align="center"><input type="radio" value="5A" name="Morning-Fourth-choice"></td>
  227.     <td width="29" align="center"><input type="radio" value="5A" name="Morning-Fifth-choice"></td>
  228.     <td width="780">&nbsp;</td>
  229.   </tr>
  230.   <tr>
  231.     <td width="31" align="center">
  232.     <input type="radio" value="6A" name="Morning-First-choice"></td>
  233.     <td width="29" align="center"><input type="radio" value="6A" name="Morning-Second-choice"></td>
  234.     <td width="31" align="center"><input type="radio" value="6A" name="Morning-Third-choice"></td>
  235.     <td width="32" align="center"><input type="radio" value="6A" name="Morning-Fourth-choice"></td>
  236.     <td width="29" align="center"><input type="radio" value="6A" name="Morning-Fifth-choice"></td>
  237.     <td width="780">&nbsp;</td>
  238.   </tr>
  239.   <tr>
  240.     <td width="31" align="center"><input type="radio" value="7A" name="Morning-First-choice"></td>
  241.     <td width="29" align="center"><input type="radio" value="7A" name="Morning-Second-choice"></td>
  242.     <td width="31" align="center"><input type="radio" value="7A" name="Morning-Third-choice"></td>
  243.     <td width="32" align="center"><input type="radio" value="7A" name="Morning-Fourth-choice"></td>
  244.     <td width="29" align="center"><input type="radio" value="7A" name="Morning-Fifth-choice"></td>
  245.     <td width="780">&nbsp;</td>
  246.   </tr>
  247.   <tr>
  248.     <td width="31" align="center"><input type="radio" value="8A" name="Morning-First-choice"></td>
  249.     <td width="29" align="center"><input type="radio" value="8A" name="Morning-Second-choice"></td>
  250.     <td width="31" align="center"><input type="radio" value="8A" name="Morning-Third-choice"></td>
  251.     <td width="32" align="center"><input type="radio" value="8A" name="Morning-Fourth-choice"></td>
  252.     <td width="29" align="center"><input type="radio" value="8A" name="Morning-Fifth-choice"></td>
  253.     <td width="780">&nbsp;</td>
  254.   </tr>
  255.   <tr>
  256.     <td width="31" align="center">
  257.     <input type="radio" value="9A" name="Morning-First-choice"></td>
  258.     <td width="29" align="center"><input type="radio" value="9A" name="Morning-Second-choice"></td>
  259.     <td width="31" align="center"><input type="radio" value="9A" name="Morning-Third-choice"></td>
  260.     <td width="32" align="center"><input type="radio" value="9A" name="Morning-Fourth-choice"></td>
  261.     <td width="29" align="center"><input type="radio" value="9A" name="Morning-Fifth-choice"></td>
  262.     <td width="780">&nbsp;</td>
  263.   </tr>
  264.   <tr>
  265.     <td width="31" align="center">
  266.     <input type="radio" value="10A" name="Morning-First-choice"></td>
  267.     <td width="29" align="center"><input type="radio" value="10A" name="Morning-Second-choice"></td>
  268.     <td width="31" align="center"><input type="radio" value="10A" name="Morning-Third-choice"></td>
  269.     <td width="32" align="center"><input type="radio" value="10A" name="Morning-Fourth-choice"></td>
  270.     <td width="29" align="center"><input type="radio" value="10A" name="Morning-Fifth-choice"></td>
  271.     <td width="780">&nbsp;</td>
  272.   </tr>
  273.   <tr>
  274.     <td width="31" align="center">
  275.     <input type="radio" value="11A" name="Morning-First-choice"></td>
  276.     <td width="29" align="center"><input type="radio" value="11A" name="Morning-Second-choice"></td>
  277.     <td width="31" align="center"><input type="radio" value="11A" name="Morning-Third-choice"></td>
  278.     <td width="32" align="center"><input type="radio" value="11A" name="Morning-Fourth-choice"></td>
  279.     <td width="29" align="center"><input type="radio" value="11A" name="Morning-Fifth-choice"></td>
  280.     <td width="780">&nbsp;</td>
  281.   </tr>
  282.   <tr>
  283.     <td width="31" align="center">
  284.     <input type="radio" value="12A" name="Morning-First-choice"></td>
  285.     <td width="29" align="center"><input type="radio" value="12A" name="Morning-Second-choice"></td>
  286.     <td width="31" align="center"><input type="radio" value="12A" name="Morning-Third-choice"></td>
  287.     <td width="32" align="center"><input type="radio" value="12A" name="Morning-Fourth-choice"></td>
  288.     <td width="29" align="center"><input type="radio" value="12A" name="Morning-Fifth-choice"></td>
  289.     <td width="780">&nbsp;</td>
  290.   </tr>
  291.   <tr>
  292.     <td width="31" align="center">
  293.     <input type="radio" value="13A" name="Morning-First-choice"></td>
  294.     <td width="29" align="center"><input type="radio" value="13A" name="Morning-Second-choice"></td>
  295.     <td width="31" align="center"><input type="radio" value="13A" name="Morning-Third-choice"></td>
  296.     <td width="32" align="center"><input type="radio" value="13A" name="Morning-Fourth-choice"></td>
  297.     <td width="29" align="center"><input type="radio" value="13A" name="Morning-Fifth-choice"></td>
  298.     <td width="780">&nbsp;</td>
  299.   </tr>
  300.   <tr>
  301.     <td width="31" align="center">
  302.     <input type="radio" value="14A" name="Morning-First-choice"></td>
  303.     <td width="29" align="center"><input type="radio" value="14A" name="Morning-Second-choice"></td>
  304.     <td width="31" align="center"><input type="radio" value="14A" name="Morning-Third-choice"></td>
  305.     <td width="32" align="center"><input type="radio" value="14A" name="Morning-Fourth-choice"></td>
  306.     <td width="29" align="center"><input type="radio" value="14A" name="Morning-Fifth-choice"></td>
  307.     <td width="780">&nbsp;</td>
  308.   </tr>
  309.   <tr>
  310.     <td width="31" align="center">
  311.     <input type="radio" value="15A" name="Morning-First-choice"></td>
  312.     <td width="29" align="center"><input type="radio" value="15A" name="Morning-Second-choice"></td>
  313.     <td width="31" align="center"><input type="radio" value="15A" name="Morning-Third-choice"></td>
  314.     <td width="32" align="center"><input type="radio" value="15A" name="Morning-Fourth-choice"></td>
  315.     <td width="29" align="center"><input type="radio" value="15A" name="Morning-Fifth-choice"></td>
  316.     <td width="780">&nbsp;</td>
  317.   </tr>
  318.   <tr>
  319.     <td width="31" align="center">
  320.     <input type="radio" value="16A" name="Morning-First-choice"></td>
  321.     <td width="29" align="center"><input type="radio" value="16A" name="Morning-Second-choice"></td>
  322.     <td width="31" align="center"><input type="radio" value="16A" name="Morning-Third-choice"></td>
  323.     <td width="32" align="center"><input type="radio" value="16A" name="Morning-Fourth-choice"></td>
  324.     <td width="29" align="center"><input type="radio" value="16A" name="Morning-Fifth-choice"></td>
  325.     <td width="780">&nbsp;</td>
  326.   </tr>
  327.   <tr>
  328.     <td width="31" align="center">
  329.     <input type="radio" value="17A" name="Morning-First-choice"></td>
  330.     <td width="29" align="center"><input type="radio" value="17A" name="Morning-Second-choice"></td>
  331.     <td width="31" align="center"><input type="radio" value="17A" name="Morning-Third-choice"></td>
  332.     <td width="32" align="center"><input type="radio" value="17A" name="Morning-Fourth-choice"></td>
  333.     <td width="29" align="center"><input type="radio" value="17A" name="Morning-Fifth-choice"></td>
  334.     <td width="780">&nbsp;</td>
  335.   </tr>
  336.   <tr>
  337.     <td width="31" align="center">
  338.     <input type="radio" value="18A" name="Morning-First-choice"></td>
  339.     <td width="29" align="center"><input type="radio" value="18A" name="Morning-Second-choice"></td>
  340.     <td width="31" align="center"><input type="radio" value="18A" name="Morning-Third-choice"></td>
  341.     <td width="32" align="center"><input type="radio" value="18A" name="Morning-Fourth-choice"></td>
  342.     <td width="29" align="center"><input type="radio" value="18A" name="Morning-Fifth-choice"></td>
  343.     <td width="780">&nbsp;</td>
  344.   </tr>
  345.   <tr>
  346.     <td width="31" align="center">
  347.     <input type="radio" value="19A" name="Morning-First-choice"></td>
  348.     <td width="29" align="center"><input type="radio" value="19A" name="Morning-Second-choice"></td>
  349.     <td width="31" align="center"><input type="radio" value="19A" name="Morning-Third-choice"></td>
  350.     <td width="32" align="center"><input type="radio" value="19A" name="Morning-Fourth-choice"></td>
  351.     <td width="29" align="center"><input type="radio" value="19A" name="Morning-Fifth-choice"></td>
  352.     <td width="780">&nbsp;</td>
  353.   </tr>
  354. </table>
  355. <p>
  356. <br>
  357. <table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  358.   <tr>
  359.     <td width="31" align="center">1st</td>
  360.     <td width="29" align="center">2nd</td>
  361.     <td width="31" align="center">3rd</td>
  362.     <td width="32" align="center">4rth</td>
  363.     <td width="29" align="center">5th</td>
  364.     <td width="780">&nbsp;</td>
  365.   </tr>
  366.   <tr>
  367.     <td width="31" align="center"><input type="radio" value="20B" name="Midmorning-First-choice" checked></td>
  368.     <td width="29" align="center"><input type="radio" value="20B" name="Midmorning-Second-choice" checked></td>
  369.     <td width="31" align="center"><input type="radio" value="20B" name="Midmorning-Third-choice" checked></td>
  370.     <td width="32" align="center"><input type="radio" value="20B" name="Midmorning-Fourth-choice" checked></td>
  371.     <td width="29" align="center"><input type="radio" value="20B" name="Midmorning-Fifth-choice" checked></td>
  372.     <td width="780">&nbsp;</td>
  373.   </tr>
  374.   <tr>
  375.     <td width="31" align="center"><input type="radio" value="21B" name="Midmorning-First-choice"></td>
  376.     <td width="29" align="center"><input type="radio" value="21B" name="Midmorning-Second-choice"></td>
  377.     <td width="31" align="center"><input type="radio" value="21B" name="Midmorning-Third-choice"></td>
  378.     <td width="32" align="center"><input type="radio" value="21B" name="Midmorning-Fourth-choice"></td>
  379.     <td width="29" align="center"><input type="radio" value="21B" name="Midmorning-Fifth-choice"></td>
  380.     <td width="780">&nbsp;</td>
  381.   </tr>
  382.   <tr>
  383.     <td width="31" align="center"><input type="radio" value="22B" name="Midmorning-First-choice"></td>
  384.     <td width="29" align="center"><input type="radio" value="22B" name="Midmorning-Second-choice"></td>
  385.     <td width="31" align="center"><input type="radio" value="22B" name="Midmorning-Third-choice"></td>
  386.     <td width="32" align="center"><input type="radio" value="22B" name="Midmorning-Fourth-choice"></td>
  387.     <td width="29" align="center"><input type="radio" value="22B" name="Midmorning-Fifth-choice"></td>
  388.     <td width="780">&nbsp;</td>
  389.   </tr>
  390.   <tr>
  391.     <td width="31" align="center"><input type="radio" value="23B" name="Midmorning-First-choice"></td>
  392.     <td width="29" align="center"><input type="radio" value="23B" name="Midmorning-Second-choice"></td>
  393.     <td width="31" align="center"><input type="radio" value="23B" name="Midmorning-Third-choice"></td>
  394.     <td width="32" align="center"><input type="radio" value="23B" name="Midmorning-Fourth-choice"></td>
  395.     <td width="29" align="center"><input type="radio" value="23B" name="Midmorning-Fifth-choice"></td>
  396.     <td width="780">&nbsp;</td>
  397.   </tr>
  398.   <tr>
  399.     <td width="31" align="center"><input type="radio" value="24B" name="Midmorning-First-choice"></td>
  400.     <td width="29" align="center"><input type="radio" value="24B" name="Midmorning-Second-choice"></td>
  401.     <td width="31" align="center"><input type="radio" value="24B" name="Midmorning-Third-choice"></td>
  402.     <td width="32" align="center"><input type="radio" value="24B" name="Midmorning-Fourth-choice"></td>
  403.     <td width="29" align="center"><input type="radio" value="24B" name="Midmorning-Fifth-choice"></td>
  404.     <td width="780">&nbsp;</td>
  405.   </tr>
  406.   <tr>
  407.     <td width="31" align="center"><input type="radio" value="25B" name="Midmorning-First-choice"></td>
  408.     <td width="29" align="center"><input type="radio" value="25B" name="Midmorning-Second-choice"></td>
  409.     <td width="31" align="center"><input type="radio" value="25B" name="Midmorning-Third-choice"></td>
  410.     <td width="32" align="center"><input type="radio" value="25B" name="Midmorning-Fourth-choice"></td>
  411.     <td width="29" align="center"><input type="radio" value="25B" name="Midmorning-Fifth-choice"></td>
  412.     <td width="780">&nbsp;</td>
  413.   </tr>
  414.   <tr>
  415.     <td width="31" align="center"><input type="radio" value="26B" name="Midmorning-First-choice"></td>
  416.     <td width="29" align="center"><input type="radio" value="26B" name="Midmorning-Second-choice"></td>
  417.     <td width="31" align="center"><input type="radio" value="26B" name="Midmorning-Third-choice"></td>
  418.     <td width="32" align="center"><input type="radio" value="26B" name="Midmorning-Fourth-choice"></td>
  419.     <td width="29" align="center"><input type="radio" value="26B" name="Midmorning-Fifth-choice"></td>
  420.     <td width="780">&nbsp;</td>
  421.   </tr>
  422.   <tr>
  423.     <td width="31" align="center"><input type="radio" value="27B" name="Midmorning-First-choice"></td>
  424.     <td width="29" align="center"><input type="radio" value="27B" name="Midmorning-Second-choice"></td>
  425.     <td width="31" align="center"><input type="radio" value="27B" name="Midmorning-Third-choice"></td>
  426.     <td width="32" align="center"><input type="radio" value="27B" name="Midmorning-Fourth-choice"></td>
  427.     <td width="29" align="center"><input type="radio" value="27B" name="Midmorning-Fifth-choice"></td>
  428.     <td width="780">&nbsp;</td>
  429.   </tr>
  430.   <tr>
  431.     <td width="31" align="center"><input type="radio" value="28B" name="Midmorning-First-choice"></td>
  432.     <td width="29" align="center"><input type="radio" value="28B" name="Midmorning-Second-choice"></td>
  433.     <td width="31" align="center"><input type="radio" value="28B" name="Midmorning-Third-choice"></td>
  434.     <td width="32" align="center"><input type="radio" value="28B" name="Midmorning-Fourth-choice"></td>
  435.     <td width="29" align="center"><input type="radio" value="28B" name="Midmorning-Fifth-choice"></td>
  436.     <td width="780">&nbsp;</td>
  437.   </tr>
  438.   <tr>
  439.     <td width="31" align="center"><input type="radio" value="29B" name="Midmorning-First-choice"></td>
  440.     <td width="29" align="center"><input type="radio" value="29B" name="Midmorning-Second-choice"></td>
  441.     <td width="31" align="center"><input type="radio" value="29B" name="Midmorning-Third-choice"></td>
  442.     <td width="32" align="center"><input type="radio" value="29B" name="Midmorning-Fourth-choice"></td>
  443.     <td width="29" align="center"><input type="radio" value="29B" name="Midmorning-Fifth-choice"></td>
  444.     <td width="780">&nbsp;</td>
  445.   </tr>
  446.   <tr>
  447.     <td width="31" align="center"><input type="radio" value="30B" name="Midmorning-First-choice"></td>
  448.     <td width="29" align="center"><input type="radio" value="30B" name="Midmorning-Second-choice"></td>
  449.     <td width="31" align="center"><input type="radio" value="30B" name="Midmorning-Third-choice"></td>
  450.     <td width="32" align="center"><input type="radio" value="30B" name="Midmorning-Fourth-choice"></td>
  451.     <td width="29" align="center"><input type="radio" value="30B" name="Midmorning-Fifth-choice"></td>
  452.     <td width="780">&nbsp;</td>
  453.   </tr>
  454.   <tr>
  455.     <td width="31" align="center"><input type="radio" value="31B" name="Midmorning-First-choice"></td>
  456.     <td width="29" align="center"><input type="radio" value="31B" name="Midmorning-Second-choice"></td>
  457.     <td width="31" align="center"><input type="radio" value="31B" name="Midmorning-Third-choice"></td>
  458.     <td width="32" align="center"><input type="radio" value="31B" name="Midmorning-Fourth-choice"></td>
  459.     <td width="29" align="center"><input type="radio" value="31B" name="Midmorning-Fifth-choice"></td>
  460.     <td width="780">&nbsp;</td>
  461.   </tr>
  462.   <tr>
  463.     <td width="31" align="center"><input type="radio" value="32B" name="Midmorning-First-choice"></td>
  464.     <td width="29" align="center"><input type="radio" value="32B" name="Midmorning-Second-choice"></td>
  465.     <td width="31" align="center"><input type="radio" value="32B" name="Midmorning-Third-choice"></td>
  466.     <td width="32" align="center"><input type="radio" value="32B" name="Midmorning-Fourth-choice"></td>
  467.     <td width="29" align="center"><input type="radio" value="32B" name="Midmorning-Fifth-choice"></td>
  468.     <td width="780">&nbsp;</td>
  469.   </tr>
  470.   <tr>
  471.     <td width="31" align="center"><input type="radio" value="33B" name="Midmorning-First-choice"></td>
  472.     <td width="29" align="center"><input type="radio" value="33B" name="Midmorning-Second-choice"></td>
  473.     <td width="31" align="center"><input type="radio" value="33B" name="Midmorning-Third-choice"></td>
  474.     <td width="32" align="center"><input type="radio" value="33B" name="Midmorning-Fourth-choice"></td>
  475.     <td width="29" align="center"><input type="radio" value="33B" name="Midmorning-Fifth-choice"></td>
  476.     <td width="780">&nbsp;</td>
  477.   </tr>
  478.   <tr>
  479.     <td width="31" align="center"><input type="radio" value="34B" name="Midmorning-First-choice"></td>
  480.     <td width="29" align="center"><input type="radio" value="34B" name="Midmorning-Second-choice"></td>
  481.     <td width="31" align="center"><input type="radio" value="34B" name="Midmorning-Third-choice"></td>
  482.     <td width="32" align="center"><input type="radio" value="34B" name="Midmorning-Fourth-choice"></td>
  483.     <td width="29" align="center"><input type="radio" value="34B" name="Midmorning-Fifth-choice"></td>
  484.     <td width="780">&nbsp;</td>
  485.   </tr>
  486.   <tr>
  487.     <td width="31" align="center"><input type="radio" value="35B" name="Midmorning-First-choice"></td>
  488.     <td width="29" align="center"><input type="radio" value="35B" name="Midmorning-Second-choice"></td>
  489.     <td width="31" align="center"><input type="radio" value="35B" name="Midmorning-Third-choice"></td>
  490.     <td width="32" align="center"><input type="radio" value="35B" name="Midmorning-Fourth-choice"></td>
  491.     <td width="29" align="center"><input type="radio" value="35B" name="Midmorning-Fifth-choice"></td>
  492.     <td width="780">&nbsp;</td>
  493.   </tr>
  494.   <tr>
  495.     <td width="31" align="center"><input type="radio" value="36B" name="Midmorning-First-choice"></td>
  496.     <td width="29" align="center"><input type="radio" value="36B" name="Midmorning-Second-choice"></td>
  497.     <td width="31" align="center"><input type="radio" value="36B" name="Midmorning-Third-choice"></td>
  498.     <td width="32" align="center"><input type="radio" value="36B" name="Midmorning-Fourth-choice"></td>
  499.     <td width="29" align="center"><input type="radio" value="36B" name="Midmorning-Fifth-choice"></td>
  500.     <td width="780">&nbsp;</td>
  501.   </tr>
  502.   <tr>
  503.     <td width="31" align="center"><input type="radio" value="37B" name="Midmorning-First-choice"></td>
  504.     <td width="29" align="center"><input type="radio" value="37B" name="Midmorning-Second-choice"></td>
  505.     <td width="31" align="center"><input type="radio" value="37B" name="Midmorning-Third-choice"></td>
  506.     <td width="32" align="center"><input type="radio" value="37B" name="Midmorning-Fourth-choice"></td>
  507.     <td width="29" align="center"><input type="radio" value="37B" name="Midmorning-Fifth-choice"></td>
  508.     <td width="780">&nbsp;</td>
  509.   </tr>
  510.   <tr>
  511.     <td width="31" align="center"><input type="radio" value="38B" name="Midmorning-First-choice"></td>
  512.     <td width="29" align="center"><input type="radio" value="38B" name="Midmorning-Second-choice"></td>
  513.     <td width="31" align="center"><input type="radio" value="38B" name="Midmorning-Third-choice"></td>
  514.     <td width="32" align="center"><input type="radio" value="38B" name="Midmorning-Fourth-choice"></td>
  515.     <td width="29" align="center"><input type="radio" value="38B" name="Midmorning-Fifth-choice"></td>
  516.     <td width="780">&nbsp;</td>
  517.   </tr>
  518. </table>
  519. <BR>
  520. <BR>
  521. <table border="3" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%">
  522.   <tr>
  523.     <td width="31" align="center">1st</td>
  524.     <td width="29" align="center">2nd</td>
  525.     <td width="31" align="center">3rd</td>
  526.     <td width="32" align="center">4rth</td>
  527.     <td width="29" align="center">5th</td>
  528.     <td width="780">&nbsp;</td>
  529.   </tr>
  530.   <tr>
  531.     <td width="31" align="center"><input type="radio" value="39C" name="Afternoon-First-choice" checked></td>
  532.     <td width="29" align="center"><input type="radio" value="39C" name="Afternoon-Second-choice" checked></td>
  533.     <td width="31" align="center"><input type="radio" value="39C" name="Afternoon-Third-choice" checked></td>
  534.     <td width="32" align="center"><input type="radio" value="39C" name="Afternoon-Fourth-choice" checked></td>
  535.     <td width="29" align="center"><input type="radio" value="39C" name="Afternoon-Fifth-choice" checked></td>
  536.     <td width="780">&nbsp;</td>
  537.   </tr>
  538.   <tr>
  539.     <td width="31" align="center"><input type="radio" value="40C" name="Afternoon-First-choice"></td>
  540.     <td width="29" align="center"><input type="radio" value="40C" name="Afternoon-Second-choice"></td>
  541.     <td width="31" align="center"><input type="radio" value="40C" name="Afternoon-Third-choice"></td>
  542.     <td width="32" align="center"><input type="radio" value="40C" name="Afternoon-Fourth-choice"></td>
  543.     <td width="29" align="center"><input type="radio" value="40C" name="Afternoon-Fifth-choice"></td>
  544.     <td width="780">&nbsp;</td>
  545.   </tr>
  546.   <tr>
  547.     <td width="31" align="center"><input type="radio" value="41C" name="Afternoon-First-choice"></td>
  548.     <td width="29" align="center"><input type="radio" value="41C" name="Afternoon-Second-choice"></td>
  549.     <td width="31" align="center"><input type="radio" value="41C" name="Afternoon-Third-choice"></td>
  550.     <td width="32" align="center"><input type="radio" value="41C" name="Afternoon-Fourth-choice"></td>
  551.     <td width="29" align="center"><input type="radio" value="41C" name="Afternoon-Fifth-choice"></td>
  552.     <td width="780">&nbsp;</td>
  553.   </tr>
  554.   <tr>
  555.     <td width="31" align="center"><input type="radio" value="42C" name="Afternoon-First-choice"></td>
  556.     <td width="29" align="center"><input type="radio" value="42C" name="Afternoon-Second-choice"></td>
  557.     <td width="31" align="center"><input type="radio" value="42C" name="Afternoon-Third-choice"></td>
  558.     <td width="32" align="center"><input type="radio" value="42C" name="Afternoon-Fourth-choice"></td>
  559.     <td width="29" align="center"><input type="radio" value="42C" name="Afternoon-Fifth-choice"></td>
  560.     <td width="780">&nbsp;</td>
  561.   </tr>
  562.   <tr>
  563.     <td width="31" align="center"><input type="radio" value="43C" name="Afternoon-First-choice"></td>
  564.     <td width="29" align="center"><input type="radio" value="43C" name="Afternoon-Second-choice"></td>
  565.     <td width="31" align="center"><input type="radio" value="43C" name="Afternoon-Third-choice"></td>
  566.     <td width="32" align="center"><input type="radio" value="43C" name="Afternoon-Fourth-choice"></td>
  567.     <td width="29" align="center"><input type="radio" value="43C" name="Afternoon-Fifth-choice"></td>
  568.     <td width="780">&nbsp;</td>
  569.   </tr>
  570.   <tr>
  571.     <td width="31" align="center"><input type="radio" value="44C" name="Afternoon-First-choice"></td>
  572.     <td width="29" align="center"><input type="radio" value="44C" name="Afternoon-Second-choice"></td>
  573.     <td width="31" align="center"><input type="radio" value="44C" name="Afternoon-Third-choice"></td>
  574.     <td width="32" align="center"><input type="radio" value="44C" name="Afternoon-Fourth-choice"></td>
  575.     <td width="29" align="center"><input type="radio" value="44C" name="Afternoon-Fifth-choice"></td>
  576.     <td width="780">&nbsp;</td>
  577.   </tr>
  578.   <tr>
  579.     <td width="31" align="center"><input type="radio" value="45C" name="Afternoon-First-choice"></td>
  580.     <td width="29" align="center"><input type="radio" value="45C" name="Afternoon-Second-choice"></td>
  581.     <td width="31" align="center"><input type="radio" value="45C" name="Afternoon-Third-choice"></td>
  582.     <td width="32" align="center"><input type="radio" value="45C" name="Afternoon-Fourth-choice"></td>
  583.     <td width="29" align="center"><input type="radio" value="45C" name="Afternoon-Fifth-choice"></td>
  584.     <td width="780">&nbsp;</td>
  585.   </tr>
  586.   <tr>
  587.     <td width="31" align="center"><input type="radio" value="46C" name="Afternoon-First-choice"></td>
  588.     <td width="29" align="center"><input type="radio" value="46C" name="Afternoon-Second-choice"></td>
  589.     <td width="31" align="center"><input type="radio" value="46C" name="Afternoon-Third-choice"></td>
  590.     <td width="32" align="center"><input type="radio" value="46C" name="Afternoon-Fourth-choice"></td>
  591.     <td width="29" align="center"><input type="radio" value="46C" name="Afternoon-Fifth-choice"></td>
  592.     <td width="780">&nbsp;</td>
  593.   </tr>
  594.   <tr>
  595.     <td width="31" align="center"><input type="radio" value="47C" name="Afternoon-First-choice"></td>
  596.     <td width="29" align="center"><input type="radio" value="47C" name="Afternoon-Second-choice"></td>
  597.     <td width="31" align="center"><input type="radio" value="47C" name="Afternoon-Third-choice"></td>
  598.     <td width="32" align="center"><input type="radio" value="47C" name="Afternoon-Fourth-choice"></td>
  599.     <td width="29" align="center"><input type="radio" value="47C" name="Afternoon-Fifth-choice"></td>
  600.     <td width="780">&nbsp;</td>
  601.   </tr>
  602.   <tr>
  603.     <td width="31" align="center"><input type="radio" value="48C" name="Afternoon-First-choice"></td>
  604.     <td width="29" align="center"><input type="radio" value="48C" name="Afternoon-Second-choice"></td>
  605.     <td width="31" align="center"><input type="radio" value="48C" name="Afternoon-Third-choice"></td>
  606.     <td width="32" align="center"><input type="radio" value="48C" name="Afternoon-Fourth-choice"></td>
  607.     <td width="29" align="center"><input type="radio" value="48C" name="Afternoon-Fifth-choice"></td>
  608.     <td width="780">&nbsp;</td>
  609.   </tr>
  610.   <tr>
  611.     <td width="31" align="center"><input type="radio" value="49C" name="Afternoon-First-choice"></td>
  612.     <td width="29" align="center"><input type="radio" value="49C" name="Afternoon-Second-choice"></td>
  613.     <td width="31" align="center"><input type="radio" value="49C" name="Afternoon-Third-choice"></td>
  614.     <td width="32" align="center"><input type="radio" value="49C" name="Afternoon-Fourth-choice"></td>
  615.     <td width="29" align="center"><input type="radio" value="49C" name="Afternoon-Fifth-choice"></td>
  616.     <td width="780">&nbsp;</td>
  617.   </tr>
  618.   <tr>
  619.     <td width="31" align="center"><input type="radio" value="50C" name="Afternoon-First-choice"></td>
  620.     <td width="29" align="center"><input type="radio" value="50C" name="Afternoon-Second-choice"></td>
  621.     <td width="31" align="center"><input type="radio" value="50C" name="Afternoon-Third-choice"></td>
  622.     <td width="32" align="center"><input type="radio" value="50C" name="Afternoon-Fourth-choice"></td>
  623.     <td width="29" align="center"><input type="radio" value="50C" name="Afternoon-Fifth-choice"></td>
  624.     <td width="780">&nbsp;</td>
  625.   </tr>
  626.   <tr>
  627.     <td width="31" align="center"><input type="radio" value="51C" name="Afternoon-First-choice"></td>
  628.     <td width="29" align="center"><input type="radio" value="51C" name="Afternoon-Second-choice"></td>
  629.     <td width="31" align="center"><input type="radio" value="51C" name="Afternoon-Third-choice"></td>
  630.     <td width="32" align="center"><input type="radio" value="51C" name="Afternoon-Fourth-choice"></td>
  631.     <td width="29" align="center"><input type="radio" value="51C" name="Afternoon-Fifth-choice"></td>
  632.     <td width="780">&nbsp;</td>
  633.   </tr>
  634.   <tr>
  635.     <td width="31" align="center"><input type="radio" value="52C" name="Afternoon-First-choice"></td>
  636.     <td width="29" align="center"><input type="radio" value="52C" name="Afternoon-Second-choice"></td>
  637.     <td width="31" align="center"><input type="radio" value="52C" name="Afternoon-Third-choice"></td>
  638.     <td width="32" align="center"><input type="radio" value="52C" name="Afternoon-Fourth-choice"></td>
  639.     <td width="29" align="center"><input type="radio" value="52C" name="Afternoon-Fifth-choice"></td>
  640.     <td width="780">&nbsp;</td>
  641.   </tr>
  642.   <tr>
  643.     <td width="31" align="center"><input type="radio" value="53C" name="Afternoon-First-choice"></td>
  644.     <td width="29" align="center"><input type="radio" value="53C" name="Afternoon-Second-choice"></td>
  645.     <td width="31" align="center"><input type="radio" value="53C" name="Afternoon-Third-choice"></td>
  646.     <td width="32" align="center"><input type="radio" value="53C" name="Afternoon-Fourth-choice"></td>
  647.     <td width="29" align="center"><input type="radio" value="53C" name="Afternoon-Fifth-choice"></td>
  648.     <td width="780">&nbsp;</td>
  649.   </tr>
  650.   <tr>
  651.     <td width="31" align="center"><input type="radio" value="54C" name="Afternoon-First-choice"></td>
  652.     <td width="29" align="center"><input type="radio" value="54C" name="Afternoon-Second-choice"></td>
  653.     <td width="31" align="center"><input type="radio" value="54C" name="Afternoon-Third-choice"></td>
  654.     <td width="32" align="center"><input type="radio" value="54C" name="Afternoon-Fourth-choice"></td>
  655.     <td width="29" align="center"><input type="radio" value="54C" name="Afternoon-Fifth-choice"></td>
  656.     <td width="780">&nbsp;</td>
  657.   </tr>
  658.   <tr>
  659.     <td width="31" align="center"><input type="radio" value="55C" name="Afternoon-First-choice"></td>
  660.     <td width="29" align="center"><input type="radio" value="55C" name="Afternoon-Second-choice"></td>
  661.     <td width="31" align="center"><input type="radio" value="55C" name="Afternoon-Third-choice"></td>
  662.     <td width="32" align="center"><input type="radio" value="55C" name="Afternoon-Fourth-choice"></td>
  663.     <td width="29" align="center"><input type="radio" value="55C" name="Afternoon-Fifth-choice"></td>
  664.     <td width="780">&nbsp;</td>
  665.   </tr>
  666.   <tr>
  667.     <td width="31" align="center"><input type="radio" value="56C" name="Afternoon-First-choice"></td>
  668.     <td width="29" align="center"><input type="radio" value="56C" name="Afternoon-Second-choice"></td>
  669.     <td width="31" align="center"><input type="radio" value="56C" name="Afternoon-Third-choice"></td>
  670.     <td width="32" align="center"><input type="radio" value="56C" name="Afternoon-Fourth-choice"></td>
  671.     <td width="29" align="center"><input type="radio" value="56C" name="Afternoon-Fifth-choice"></td>
  672.     <td width="780">&nbsp;</td>
  673.   </tr>
  674.   <tr>
  675.     <td width="31" align="center"><input type="radio" value="57C" name="Afternoon-First-choice"></td>
  676.     <td width="29" align="center"><input type="radio" value="57C" name="Afternoon-Second-choice"></td>
  677.     <td width="31" align="center"><input type="radio" value="57C" name="Afternoon-Third-choice"></td>
  678.     <td width="32" align="center"><input type="radio" value="57C" name="Afternoon-Fourth-choice"></td>
  679.     <td width="29" align="center"><input type="radio" value="57C" name="Afternoon-Fifth-choice"></td>
  680.     <td width="780">&nbsp;</td>
  681.   </tr>
  682. </table>
  683. <BR>
  684. <BR>
  685. <input type="hidden" name="dateandtime">
  686. <tr>
  687. <td colspan=2><input type="submit" name="submit" value="Submit">
  688. <input type='reset' name='reset' value='Clear all fields'></td>
  689. </tr>
  690. </form>
  691. </body>
  692. </html>
I would greatly appreciate any input on this matter.
Nov 7 '08 #8

Sign in to post your reply or Sign up for a free account.

Similar topics

11
by: grumfish | last post by:
I'm trying to add a row to a MySQL table using insert. Here is the code: connection = MySQLdb.connect(host="localhost", user="root", passwd="pw", db="japanese") cursor = connection.cursor()...
0
by: David Bordas | last post by:
Hi list, I've got a little bug with MySQL. I can insert a row into my table but this row will not appear in the table :( Server is under linux redhat, MySQL is 3.23.56 installed from binary...
0
by: Fraser Hanson | last post by:
I have table A with column id, and table B with columns id and content. I am trying to build a query that inserts all ids from table A into table B, and also sets the "value" field for all these...
0
by: Rajesh Kapur | last post by:
I have a master slave configuration on linux machines running MySQL 4.0.21. Once every hour, a process deletes about 9000 rows and re-inserts fresh data on the master. The master process completes...
10
by: Python_it | last post by:
Python 2.4 MySQL-python.exe-1.2.0.win32-py2.4.zip How can I insert a NULL value in a table (MySQL-database). I can't set a var to NULL? Or is there a other possibility? My var must be variable...
3
by: Materialised | last post by:
Hello everyone, I am having a issue inserting values into a MYSQL table, and for the life of me, I can figure out why. I know the connection is successful, however I am getting errors. The...
2
by: blitzztriger | last post by:
Hello!! how do i insert values into mysql , after parsing a submiting textbox?? I made the arrays, so this should be a basic insertion of them in the db, but something is missing, or in the wrong...
0
chumlyumly
by: chumlyumly | last post by:
Hello scripters - OS: Mac OSX Language: PHP w/ MySQL database I've created an insert page where a user inputs his info, which then goes to four different tables in a MySQL database. The...
15
by: Maarten | last post by:
I've found some answers to my problem on this forum, but not exactly the answer I was looking for. Sorry if I've missed something. This is my situation: I am trying to make an insertion into an...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.