View Single Post
  #5 (permalink)  
Old 12-15-09, 07:54 AM
therocket954's Avatar
therocket954 therocket954 is offline
Community Liaison
 
Join Date: Jul 2007
Location: Michigan, USA
Posts: 334
Thanks: 2
Thanked 8 Times in 8 Posts
Also, don't self-close the form tag itself. (Remove the slash from the end of the <form> tag). You'll need a form close tag below all of your form elements. This should work (replacing your HTML code with this):

HTML Code:
<body text="#006633">
<form action="http://fcetdev1.student.staffs.ac.uk/wwwdata/dsa/2009-2010/dv003319/selection.php" method="post">
<table width="427" height="619" border="1">
  <tr>
    <td><strong>Products</strong></td>
    <td><strong>Quantity</strong></td>
  </tr>
  <tr>
    <td>Lifeflow LF09 Blood Pressure Monitor</td>
    <td><input name="txtProduct0" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Lifeflow Auto Blood Pressure Monitor</td>
    <td><input name="txtProduct1" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Tryton Cardiology Stethoscope</td>
    <td><input name="txtProduct2" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Unit Dosage Drug Trolley</td>
    <td><input name="txtProduct3" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Dressing Scissors</td>
    <td><input name="txtProduct4" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Operating Scissors</td>
    <td><input name="txtProduct5" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Disposable Mask</td>
    <td><input name="txtProduct6" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Latex Gloves (Large)</td>
    <td><input name="txtProduct7" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Latex Gloves (Medium)</td>
    <td><input name="txtProduct8" type="text" value="0"></td>
  </tr>
  <tr>
    <td>Washproof Plasters</td>
    <td><input name="txtProduct9" type="text" value="0"></td>
  </tr>
</table>

<br>
<br>
<br>
<br>

<input type="submit" value="Choose your items">
</form>
</body>
__________________
--Eric Allison
Twitter: http://www.twitter.com/Eric_Allison
Reply With Quote
The Following User Says Thank You to therocket954 For This Useful Post:
Jimmy90 (12-15-09)