in reply to Database still overwriting itself
Try this:
my $unverified = 'this'; my %dbm = ( this => 'bar', ); print $dbm{$unverified},$/; print $dbm{'$unverified'},$/; [download]