snippet from the html form:
.
.
.
<form
action="tssubmit.php"
method="POST" name="TimeSheet">
.
.
<tr>
<td>
<select name="WorkOrder1" size="1" width="15">
<option selected value=""> </option>
<option value="171099-01"> 171099-01, LMER GAAT-1 </option>
<option value="171099-02"> 171099-02, LMER GAAT-2 </option>
<option value="171099-03"> 171099-03, LMER GAAT-3 </option>
.
.
.
</select>
</td>
Processing php form:
print ($EmployeeNo);
print (" $");
print ($WeekEndDate);
print (" #");
print ($WorkOrder1);
The Print $WorkOrder1 statement will not output the assigned values above. It outputs 1 or 2 or 3 etc.
The data is actually being stored in a MySQL database, but I set up the print statements for testing.