Help for this page

Select Code to Download


  1. or download this
     use DBI;
    my $driver = "mysql"; 
        my $database = "marketplace_perl";
    ...
            my $sth = $dbh->prepare("SELECT UserEmail,UserPassword FROM pj
    +_user where UserEmail=? and UserPassword=?");
    
            $sth->execute($UserEmail,$UserPassword);
    
  2. or download this
    package Marketplace;
    use DBI;
    ...
    
        }