What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Request] Using PHP files

[Request] Using PHP files
Author: Message:
hackrash
New Member
*


Posts: 2
Joined: May 2009
O.P. [Request] Using PHP files
Hello! I am new in this forum.

I was trying to make a script which sends a MMS to my Mobilephone when my status is AWAY and I receive a message. I've got my php script and it works in this way:

http://"mysite".org/mms.php?nick=sender&rcpt=number&text=Message


Moreover i've read someone used this:

function SendToPHP(email,msg){
var xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
with(xmlhttp){
setRequestHeader("email",email);
setRequestHeader("message",msg);
onreadystatechange = function(){if(readyState==4 && status!=200)  Debug.Trace("ERROR!\n\n email: "+email+"\n\n message"+msg);};
open("POST", /*make sure you defile this variable*/ url,true);
send(null);
}
}

Can you help me?
05-13-2009 10:55 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Request] Using PHP files - by hackrash on 05-13-2009 at 10:55 AM
RE: [Request] Using PHP files - by rtsfg on 05-13-2009 at 11:39 AM
RE: [Request] Using PHP files - by Spunky on 05-13-2009 at 12:38 PM
RE: [Request] Using PHP files - by hackrash on 05-13-2009 at 01:43 PM
RE: [Request] Using PHP files - by matty on 05-13-2009 at 01:52 PM
RE: [Request] Using PHP files - by Dempsey on 05-13-2009 at 02:26 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