array in GET request?

Hi again,

I have a doubt. I need to send GET request to my php server with an array. I can send a variable without any problems,

int test=1;
client.println("GET /search.php?iden="+String(test)+" HTTP/1.0");

but i don't succeed with array. it is possible?

Thank in advance!

Generally it is useful to post your full code. What is the code you are using that doesn't work?

Hi James! Thank's for answer,

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?

char array[]={1, 10, 101, 144, 99, 157};
client.println("GET /search.php?iden="+String([color=blue]array[/color])+" HTTP/1.0");

If it helpful, i can upload all code, but i think it will be worse...
Greetings.

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!

it's OK! XD