Mary wrote:


Hi all,
  As usual, I am having trouble with hidden fields.  Here is the simplest
example from my code which is not working:
if ($tmp_perm eq 'prm_'){
my $oldFieldName
= "old_$fieldName";
print hidden (-name =>

$oldFieldName, -value => $fieldValue, -default => $fieldValue-override =>
1);

if this was coppied directly from your script then the missing comma may be your proplem.

$oldFieldName, -value => $fieldValue, -default => $fieldValue, -override => 1);


my $get_old_field_name = param(-
name => $oldFieldName);
print "got old field =
$get_old_field_name";
}

Output:  got old field =
even though $oldFieldName and $fieldValue are not blank.

Of course, I am retrieving the value from $oldFieldName in a different
part of the code, but if it doesn't work here.....

I typically experience problems and frustrations with hidden fields.  Is
this common?

Thanks,

Mary Anderson
Matthew Ryan
703-642-2651
Administrator/Realtor
RE/MAX CitySide
7700 Little River Tpke #305
Annandale, VA 22003

http://www.ListingMap.net

*We will never share your email with anyone without your consent.
*reply with the word 'remove' in the subject line to stop recieving emails from us.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to