Thanks for your post Andy.
Don't worry, you haven't underestimated my experience.
Like I said, I don't know much about all this things. Thereby, my English isn't that good either. I constantly have to pick a dictionary to find the explanation of some things...
Some therms are so technically, that this is very difficult to understand.
And there are no friends or so that can help me with the electronic stuff because all of them plat football or something instead of it 
You're right that I better can invest some time in all this things, but the problem is that this is REALLY nice stuff, and I can't wait to get it working. I spent maybe 10 hours on it, without get it working. Yes, I got something working with fixed text, that was very cool!! But when it's still not working after you tried so many times, it's time to ask for help.
But anyway, I took a look at the procedure again and found:
// ----- http get
void ES_client_browse_url(prog_char *urlbuf, char *urlbuf_varpart, prog_char *hoststr,void (*callback)(uint8_t,uint16_t));
// The callback is a reference to a function which must look like this:
// void browserresult_callback(uint8_t statuscode,uint16_t datapos)
// statuscode=0 means a good webpage was received, with http code 200 OK
// statuscode=1 an http error was received
// statuscode=2 means the other side in not a web server and in this case datapos is also zero
// ----- http post
// client web browser using http POST operation:
// additionalheaderline must be set to NULL if not used.
// method should be used if default POST to be overridden set NULL for dfault
// postval is a string buffer which can only be de-allocated by the caller
// when the post operation was really done (e.g when callback was executed).
// postval must be urlencoded.
void ES_client_http_post(prog_char *urlbuf, prog_char *hoststr, prog_char *additionalheaderline, prog_char *method, char *postval,void (*callback)
(uint8_t,uint16_t));
// The callback is a reference to a function which must look like this:
// void browserresult_callback(uint8_t statuscode,uint16_t datapos)
// statuscode=0 means a good webpage was received, with http code 200 OK
// statuscode=1 an http error was received
// statuscode=2 means the other side in not a web server and in this case datapos is also zero
All the parameters are prog_char (not possible to insert variables during run time) except postval, that one is a (normal?) char. Maybe I can fix something with that...
Regards,
Atmoz