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