Help with GET request?

TheSpy7:
So the response is totally correct. It does not show the output of the GET request. The GET request DOES work in a browser. The response serial is just successful and then it says Great success!

How do you know the response is correct, if you haven't seen it?

This code looks as if it prints the response to the serial monitor:

  while (client.connected() || client.available()) { //connected or data available
    char c = client.read(); //gets byte from ethernet buffer
    Serial.print(c); //prints byte to serial monitor 
  }

Why is there no output from that code?