- or download this
# When retrieving data from DBI
my $Ref = {map(defined $_ ? $_ : '', %{$sth->fetchrow_hashref})};
- or download this
my $Ref = [map(defined $_ ? $_ : '', @{$sth->fetchrow_arrayref)];
- or download this
print "<td> @{[ defined $Var ? $Var : '' ]} </td>";