code:
<?php
/* -------------------------------------------------------
ShoutBox v1.1
By: Mark Lethbridge, 2007
-------------------------------------------------------
Install notes:
Only thing that needs to be changed in this file is the
line: $shoutbox_page = "index.php";
You simple change "index.php" into the correct page
that the shoutbox will appear in.
-------------------------------------------------------- */
$file='shouts.txt';
$new = $_POST['user'].":".$_POST['shout'] . "\n" . file_get_contents($file);
$fp =fopen($file,'w');
fwrite($fp, $new);
fclose($fp);
$shoutbox_page = "http://pps3.awardspace.com/Shoutbox/index.php";
header("Location: $shoutbox_page");
?>
I have no idea if that will work btw