When you want to httpRequest

This page is recommended

http://blog.goo.ne.jp/xmldtp/e/352dae9773890a00116e49ae3d3266ba

An example is this

function Load()
{
    //  データ書き出し
    //  書き出し文字はUTF-8を想定しています
    msg = "ver=test&key=" + encodeURIComponent("ハローワールド");
    httpRequest("http://127.0.0.1/postout.php","POST",msg);

}