MySQL DB Eintrag auslesen ? [gelöst]

Hallo,
also sieht garnicht so schlecht aus für den Anfang, ich habe jetzt erstmal einen Sketch geschrieben,
der sich nur auf den Request beschränkt, um zu sehen was alles ankommt.

Hier der Sketch:

#include <SPI.h>
#include <Ethernet.h>

byte mac[] = { 0x00, 0xAB, 0xCB, 0xCD, 0xDE, 0x02 };
IPAddress ip(192,168,178,140);
IPAddress server(192,168,178,111);
EthernetClient client;
char host[]    = "192.168.178.111";                      // Domain
char url[]     = "/Arduino/Gas/read.php"; // Pfad zur PHP-Datei

unsigned long GZStand;

void Daten_senden(){

if (client.connect(server, 8000)) {
    Serial.println(F("Verbunden, Sende Daten..."));
    client.print("GET " + String(url));
    Serial.println("GET " + String(url));
    client.print(F("?GZStand="));
    Serial.print(F("?GZStand="));
    client.print(GZStand);
    Serial.println(GZStand);      
    client.println(" HTTP/1.1");
    Serial.println(F(" HTTP/1.1"));
    client.print("Host: " + String(host));
    Serial.print("Host: " + String(host));
    client.println();
    Serial.println();
    client.println("User-Agent: Arduino");
    Serial.println(F("User-Agent: Arduino"));
    client.println("Connection: close");
    Serial.println(F("Connection: close"));
    client.println();
    Serial.println();
  } else {
    // if you couldn't make a connection:
    Serial.println("connection failed");
    Serial.println("disconnecting.");
  }

}

void setup() 
{
Serial.begin(9600);
Serial.print("Setup LAN ... ");
// give the Ethernet shield a second to initialize:
delay(1000);
Ethernet.begin(mac, ip);
Serial.println("ok");
delay(1000);
Daten_senden();
}

void loop()
{
if (client.available()) {
char c = client.read();
Serial.print(c);
}

// if the server's disconnected, stop the client:

if (!client.connected()) {
Serial.println();
Serial.println("disconnecting.");
client.stop();
delay(100000);
}
}

Und Serial ist das zu sehen:

Setup LAN ... ok
Verbunden, Sende Daten...
GET /Arduino/Gas/read.php
?GZStand=0.00
 HTTP/1.1
Host: 192.168.178.111
User-Agent: Arduino
Connection: close

HTTP/1.1 200 OK
Date: Wed, 09 Jan 2013 21:44:26 GMT
Server: Apache/2.2.21 (Unix) PHP/5.3.6
X-Powered-By: PHP/5.3.6
Vary: Accept-Encoding
Content-Length: 7
Connection: close
Content-Type: text/html

9013.06
disconnecting.

Also mit d

char c = client.read();
Serial.print(c);

bekomme ich eine Ausgabe (9013.06) , aber mit

 client.print(GZStand);
    Serial.println(GZStand);

kommt nur "?GZStand=0.00" das raus.

Nun brauche ich mal wieder Hilfe, wie und wo muss ich denn nun atoi bzw. atol einsetzten?
Und woher weiß ich, ob die Ausgabe als String vorliegt?

Ich habe da was im Netz gefunden, wäre das etwas ?

int ausgabe = atoi(antwort.substring((antwort.indexOf("\n\n") + 1));