in reply to Re^4: How to get input text boxes populated
in thread How to get input text boxes populated

In the update form, change the name in the hidden input field to empid.
<input type="hidden" name="empid" value="$hr->{'EmployeeID'}"/>
otherwise the validation here will prevent the update
if ( ($action eq "UPDATE") && ($empid =~ /\d+/)) {
poj