Hi, I'm working on a site that captures and displays information on all the projects my client is working on. When certain information is updated they want that earmarked, but not when other information in the form is updated. So I've put in some <hidden> fields to capture the original values, which are then compared to the new values that are submitted to see if they have changed. The problem is for some of the projects (but not all, which is the weirdest part) the form won't submit. Nothing happens. When I comment out about half of the <hidden> statements the remaining projects will work. Any idea why this happens?
Here is the code if it helps:
print "\n<input type = hidden name = \"old_objective\" value = \"$objective\">";
print "\n<input type = hidden name = "old_mngID\" value = \"$mngID_project\">";
print "\n<input type = hidden name = \"old_tims\" value = \"$tims\">";
print "\n<input type = hidden name = \"old_active\" value = \"$active\">";
print "\n<input type = hidden name = \"old_flex_info\" value = \"$flex_info\">";
print "\n<input type = hidden name = \"old_least_flex\" value = \"$least[flex]\">";
print "\n<input type = hidden name = \"old_moderately_flex\" value = \"$moderately[flex]\">";
print "\n<input type = hidden name = \"old_most_flex\" value = \"$most[flex]\">";
print "\n<input type = hidden name = \"old_least_color\" value = \"$least[color]\">";
print "\n<input type = hidden name = \"old_moderately_color\" value = \"$moderately[color]\">";
print "\n<input type = hidden name = \"old_most_color\" value = \"$most[color]\">";
print"
\n<input type = hidden name = \"analyze1\" value = \"".$stage_months[analyze]."\">
<input type = hidden name = \"design1\" value = \"".$stage_months[design]."\">
<input type = hidden name = \"deploy1\" value = \"".$stage_months[deploy]."\">
<input type = hidden name = \"develop1\" value = \"".$stage_months[develop]."\">
<input type = hidden name = \"beta1\" value = \"".$stage_months[beta]."\">
<input type = hidden name = \"test1\" value = \"".$stage_months[test]."\">
<input type = hidden name = \"old_baseline\" value = \"$baseline\">";
Thanks,
dave