b3ta.com board
You are not logged in. Login or Signup
Home » Messageboard » Message 3087104 (Thread)

# thank you!
It worked!!!!!
I think.....

edit: well, it's half working! when i go to www.website.com/sms.php?msg=test+message
It's writing Latest Message: to the text file, but not the actual message
(, Fri 23 Apr 2004, 21:12, archived)
# no problem
you has a load of single quotes in it which i couldn't see a purpose for, should work fine now

edit, try this:

//(C)Richard John 2004

// path to the file to store messages in
$filename = 'sms.txt';

$vars = $_GET['msg'];
$fp = fopen($filename, 'a');
fputs($fp, "msg= Latest message: ".$vars." \n");
fclose($fp);
(, Fri 23 Apr 2004, 21:13, archived)
# i Love You!
In a non gay type of way!
(, Fri 23 Apr 2004, 21:28, archived)
# heh
glad to help
(, Fri 23 Apr 2004, 21:30, archived)