Help for this page

Select Code to Download


  1. or download this
    CUSTOMER_INFORMATION
    --------------------
    ...
    country
    postal_code
    ...etc...
    
  2. or download this
      $dbh = DBI->connect($dsn, $user, $pass,
                          { RaiseError => 1, PrintError => 1, AutoCommit =
    +> 1 });
    ...
    
      $sql->execute($FName, $LName, $Address1, $Address2, $City, $State,
                    $PostalCode);
    
  3. or download this
    select max(id) from customer_information where first_name = $FName and
    + last_name = $LName;