Wait, I think I'm understanding now. Are you saying change the order of the if statements? Take this one
Code:
if(client.find("/"))
And put it in the spot of this (and vice versa)?
Code:
if(strcmp(buffer,"POST ") == 0)
?
That way it looks for POST instead of the "/"?
Or add a new if statement for if(client.find"POST")?