In prose, lines longer than 80 or so have been shown to be harder to read. (See page 13 of LaTeX Memoir class documentation.) Code Complete (section 18.5, page 425 of my edition) of also references the 80 character limit with this proviso:
With larger screens, narrow typefaces, laser printers, and landscape mode, the arguments for the 80-character limit aren't as compelling as they used to me. A single 90-character-long line is usually more readable than one that has been broken in two just to avoid spilling over the 80the column. With modern technology, it's probably all right to exceed 80 columns occasionally.
I would indent the SQL in your first example separately from the rest of the code:
if ($Stmt = $Mysqli->prepare(
"SELECT color, pattern, size,
manufacturer, mfgSku, storeLocation,
aisle, status
FROM tblItems
WHERE ourSku = ?")) {
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
);