/** * Format the Result * */ private function getResult($result, $show_lastid = false) { $result = '<br /><br /> - The code above will output: <pre style="color:blue;">' . print_r($this->sanitize($result), true) . '</pre>'; $result .= 'Total records affected: <strong style="color:red;">' . PDO4You::rowCount() . '</strong>'; $result .= $show_lastid ? ' Id of the last iteration: <strong style="color:red;">' . PDO4You::lastId() . '</strong>' : null; return $result; }