Excuse me, because I'm spanish and my english is not very good. I have not uploaded the code because is too long. I'm working with W5100 module ethernet with client class, from Ethernet library. My arduino is connect to php server and it works sending requests to query the database. I want know wich is the syntax for send an array. Do you understand me?
Now the server isn't available because is installed in friend's pc, but I think the solution is:
int digito1=1;
int digito2=10;
int digito3=101;
int digito4=144;
int digito5=168;
client.print("GET /consulta1.php?iden="); //enviamos la peticion al servidor
client.print(digito1);
client.print(digito2);
client.print(digito3);
client.print(digito4);
client.print(digito5);
client.println(" HTTP/1.0");
At least the serialmonitor displays what I need:
GET /consulta1.php?iden=110101144168 HTTP/1.0
Now need to try it on the server. If it works, I say something.
See you!