in reply to Re^4: Changing the Value Assigned To A Hash Key
in thread Changing the Value Assigned To A Hash Key
Whoo, why are you putting $app.. into quotes? Tryprint textfield(-name=>'first_name', -size=>'40', -maxlength=>'40', -d +efault=>"$app{'first_name'}");
Good Luck!print textfield( -name => 'first_name', -size => 40, -maxlength => 40, -default => $app{'first_name'}, );
|
|---|