What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » I need a little help please ^^

I need a little help please ^^
Author: Message:
Pai
Full Member
***

w00t !

Posts: 203
Reputation: 2
– / Male / –
Joined: Sep 2003
RE: I need a little help please ^^
You can

code:
    var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    xmlhttp.open("POST", 'http://www.url.com/script.php', true);
    xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); //if posting to a html form
    xmlhttp.send('var1=content1&var2=content2&varX=etc');

    xmlhttp.onreadystatechange = function(){
      if ((xmlhttp.readyState == 4) && (xmlhttp.status == 200)) {
        var postResponse = xmlhttp.responseText;
        //fsResponse contains the result of the POST, so the URL is in there somewhere, depending on what method you use in your online form to redirect (may be javascript, php's header(), etc)
      }
    }

07-30-2006 06:15 PM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
I need a little help please ^^ - by dbgtrgr on 07-30-2006 at 04:21 PM
RE: I need a little help please ^^ - by Stigmata on 07-30-2006 at 05:23 PM
RE: I need a little help please ^^ - by Pai on 07-30-2006 at 06:15 PM
RE: I need a little help please ^^ - by dbgtrgr on 07-30-2006 at 07:17 PM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On