You are here

function cc::show_last_connection in Constant Contact 7.3

Same name and namespace in other branches
  1. 6.3 class.cc.php \cc::show_last_connection()

This method does a print_r on the http_request and http_response variables Useful for debugging the HTTP request

@access public

File

./class.cc.php, line 270
Constant Contact PHP Class

Class

cc
@file Constant Contact PHP Class

Code

function show_last_connection() {
  print_r($this->http_request);
  print_r($this->http_response);
}