What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Solved] XMLHTTP post

[Solved] XMLHTTP post
Author: Message:
davidpolitis
Full Member
***


Posts: 371
Reputation: 16
Joined: Aug 2006
RE: RE: XMLHTTP post
quote:
Originally posted by roflmao456
code:
<?php
if($_POST['status']){
file_put_contents("currentstatus.txt",$_POST['status']); // PHP 5 required for this. otherwise use "fclose(fwrite(fopen("currentstatus.txt","w"),$_POST['status']));"
// done..
}
?>

I personally prefer the code below created by me :P

[code]<?php

if($_POST['status'])
{
if($_SERVER['REMOTE_ADDR'] == "IP ADDRESS HERE")
{
  $file = fopen("status.txt", "w");

  fwrite($file, $_POST['status']);

  fclose($file);
}
else
{
  echo("Sorry, you are not permitted to view this page.");
}
}

?>

This post was edited on 08-29-2007 at 10:20 AM by davidpolitis.
08-29-2007 10:15 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[Solved] XMLHTTP post - by Deco on 08-28-2007 at 09:12 PM
RE: XMLHTTP post - by roflmao456 on 08-29-2007 at 12:20 AM
RE: RE: XMLHTTP post - by davidpolitis on 08-29-2007 at 10:15 AM
RE: XMLHTTP post - by Deco on 08-29-2007 at 01:16 AM
RE: XMLHTTP post - by -dt- on 08-29-2007 at 01:54 AM
RE: XMLHTTP post - by Deco on 08-29-2007 at 03:08 PM
RE: XMLHTTP post - by matty on 08-29-2007 at 03:39 PM
RE: XMLHTTP post - by Deco on 08-29-2007 at 04:16 PM
RE: XMLHTTP post - by Matti on 08-29-2007 at 04:38 PM
RE: XMLHTTP post - by Deco on 08-29-2007 at 04:43 PM
RE: [Solved] XMLHTTP post - by roflmao456 on 08-29-2007 at 05:33 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