hm, i did... and it seems to work / go funny
code:
$file='shouts.txt';
if(empty($_POST['shout'])) {
echo "Sorry its empty";
}
$new = strip_tags($_POST['user']).":".strip_tags($_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");
?>