Bom dia agradeceria ajuda, não sei onde estou errando. Está aparecendo um erro de bind parameter como segue:
Fatal error: Call to a member function bind_param() on boolean in C:\Bitnami\wampstack-5.6.30-5\apache2\htdocs\cart\cart.php on line 145
$dbConnection = $this->dbConnection;
$dbConnection->query( "SET NAMES 'UTF8'" );
$statement = $dbConnection->prepare( "insert into order( name, email, total) value(?, ?, ?)" );
linha 145->$statement->bind_param( 'ssd', $name, $email, $total);
$statement->execute();
$newid = $statement->insert_id;
$this->db->conn->error_list;
$statement->close();