Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use DBI;
    ...
    
    __END__
    'joe' 'secret'
    
  2. or download this
    my ($UserID, $Password) = map {$hDB->quote( "$_" )} 
            ($Vars->{userid}, $Vars->{password});
    
  3. or download this
      my $UserID   = $hDB->quote ( "$Vars->{'userid'}" );
      my $Password = $hDB->quote ( "$Vars->{'password'}" );
    
  4. or download this
       # from the DBI.pm module
       1126     sub quote {
    ...
       1128
       1129     return "NULL" unless defined $str;
       # more code follows .....
    
  5. or download this
     _  _ _  _  
    (_|| | |(_|><
     _|