monkey_boys
monkey_boys

Reputation: 7348

http post with flash?

when using http post with flash that send ip address request from client computer or server?

Useful Link ( i add it because when using Google Search with"http post with flash" its first page )

  1. http://www.shinedraw.com/data-handling/flash-vs-silverlight-simple-http-post-request/

example

var sender = new LoadVars();

sender.x = "xxx";

sender.y = "yyy";

sender.z = "zzz";

sender.send("http://www.yourdomain.com/yourscript.php", "", "post");

Upvotes: 0

Views: 1249

Answers (1)

TC.
TC.

Reputation: 4183

I am not 100% sure what the question is, but I think this is the answer you're looking for: generally speaking, flash is running locally on the client. The connection will therefore be made from the client's system and as a result show the client's IP address.

Upvotes: 1

Related Questions