in reply to Re^4: Changing the Value Assigned To A Hash Key
in thread Changing the Value Assigned To A Hash Key

print textfield(-name=>'first_name', -size=>'40', -maxlength=>'40', -d +efault=>"$app{'first_name'}");
Whoo, why are you putting $app.. into quotes? Try
print textfield( -name => 'first_name', -size => 40, -maxlength => 40, -default => $app{'first_name'}, );
Good Luck!