Help for this page

Select Code to Download


  1. or download this
    if ($customer->is_female) {
        print "Dear Ms. ", $customer->surname();
    } else {
        print "Dear Mr. ", $customer->surname();
    }
    
  2. or download this
    print "Dear ", ($customer->is_female?"Ms. ":"Mr. "),$customer->surname
    +();