[solved] arduino send data to mysql db using gsm/GPRS shield 2

I've read tons of tutorials and topics... maybe now i'm confused.
only one target:
send a data(integer) from arduino to mysql db host by a free hosting service ( altervista) and save it in a table/column.

already server up and test the mysql db / php script in this way:
php code:

<?php
$conex = mysql_connect("localhost","mysite","");

if(!$conex){
    die("attenzione non è possibile connettersi al server 
".mysql_error());
}
else{
echo ("Connesso con successo");
print ("Connesso con successo");}



$db = mysql_select_db("my_sqldb", $conex);

if(!$db){
    die("attenzione, non è possibile connettersi al database 
".mysql_error());
}


//$Boton = $_POST["strBoton"];
$Boton = $_GET["strBoton"];

$sql = "INSERT INTO test2 (test) VALUES ('".$Boton."') ";   

$res = mysql_query($sql,$conex);

?>

now insert this adress im my browser:

http://www.mysite.altervista.org/write_data2.php?strBoton=976

the data 976 is correctly load by my sql db, nice one.

arduino side make me stupid:
here i have try tons of solution and now i'm confusing a lot.
i'm going to reduce day after day the code in order to have the more EASY example i hope, my code now is this:

// libraries
#include <GSM.h>

// PIN Number
#define PINNUMBER ""

// APN data
#define GPRS_APN       "tre.it" // replace your GPRS APN
#define GPRS_LOGIN     ""    // replace with your GPRS login
#define GPRS_PASSWORD  "" // replace with your GPRS password

// initialize the library instance
GSMClient client;
GPRS gprs;
GSM gsmAccess;

// URL, path & port
char server[] = "mysite.altervista.org";
char path[] = "/write_data2.php";
int port = 80; // port 80 is the default for HTTP

//The variable that will have the data as a string to send it, i read sending an int with POST may cause trouble
//String strBoton = "";
void setup(){
  // initialize serial communications and wait for port to open:
  Serial.begin(9600);
 
  while (!Serial) {
    ; // wait for serial port to connect. Needed for Leonardo only
  }

  Serial.println("Starting Arduino Web Client.");
  // connection state
  boolean notConnected = true;

  // After starting the modem with GSM.begin()
  // attach the shield to the GPRS network with the APN, login and password
  while(notConnected)
  {
    if((gsmAccess.begin(PINNUMBER)==GSM_READY) &
      (gprs.attachGPRS(GPRS_APN, GPRS_LOGIN, GPRS_PASSWORD)==GPRS_READY)){
      notConnected = false;
      } else
    {
      Serial.println("Not connected");
      delay(1000);
    }
  }

  Serial.println("connecting...");
}

void loop(){
 
  //convert the button state in string to send it
  //strBoton is the variable that the GET method will search for
   //strBoton="strBoton=77";
  //
 
  // if you get a connection, report back via serial:
  if (client.connect(server, port))
  { 
    Serial.println("conected and sending data");

    // Make a HTTP request:
 client.print("GET /write_data2.php?strBoton=66");
 client.println(" HTTP/1.1");
 client.println("Host: www.mysite.altervista.org");
 client.println("Connection: close");
    
  }
  else
  {
    // if you didn't get a connection to the server:
    Serial.println("the connection failed");
    Serial.print("");
  }
  delay(10000); // delay to send data every 10 seconds
 
}

the serial monitor output:

Starting Arduino Web Client.
connecting...
conected and sending data
the connection failed

there is a hi probability that in the milion of test i lost some step, my help request is this:
see the php working code and the nonworking sketch, someone can tell me the easy example to access my sqldb and send data passing from my php script?

Sorry sorry sorry...
my phone provider need a umts comunication protocol, so today i have tested with my broder's sim and it work.
what confused me is that i'm able to send SMS so i think "ergo can connect correctly to internet" but is not the same.

for the future people that can encounter the same problem:

[SOLVED]:
be sure that your phone provider support a only GSM internet access and don't need a UTMS one!

sorry for inutile question

would you please tell about the sql? how many column does it contain?

hello guys i need the schematic diagram please .

please code software serial arduino uno and SIM 900 GPRS with schematic diagram
to run this link :"http://localhost/workfile/dht.php?temperature=20"