show/hide this revision's text 2 added 783 characters in body

None of these is that bad... ;-) Let me take a stab at the The first looks like it came from some of my own code.:

if ($Stmt = $Mysqli->prepare(
            "SELECT color, pattern, size,
                    manufacturer, mfgSku, storeLocation,
                    aisle, status
             FROM tblItems 
             WHERE ourSku = ?")) {

This one looked like it came from some of my own code.

The second example might be better if it were loaded into a configuration file or table.

The third is fine, but you could tighten it up a bit with:

$Stmt->bind_result( 
   $this->_firstName,
   $this->_lastName,
   $this->_BillToAddress->address1,
   $this->_BillToAddress->address2,
   $this->_BillToAddress->city,
   $this->_BillToAddress->state,
   $this->_BillToAddress->zip,
   $this->_BillToAddress->country,
   $this->_email,
   $this->_status,
   $this->_primaryPhone,
   $this->_mobilePhone 
);

In prose, lines longer than 80 or so have been shown to be harder to read. 60 or less would be even better. I think code is more like poetry and so line ought to be even shorter if possible. But it's probably not worth spending a huge amount of time worrying about.

show/hide this revision's text 1

None of these is that bad... ;-) Let me take a stab at the first:

if ($Stmt = $Mysqli->prepare(
            "SELECT color, pattern, size,
                    manufacturer, mfgSku, storeLocation,
                    aisle, status
             FROM tblItems 
             WHERE ourSku = ?")) {

This one looked like it came from some of my own code.

The second example might be better if it were loaded into a configuration file or table.