lol sorry, im a complete php newb... where about would it have to go, and in what one, lol
quote:
Originally posted by M73A
s the 'Add shout.php' one
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='file.txt';
$newcontent = 'blah';
$new = $newcontent . "\n" . file_get_contents($file);
$fp =fopen($file,'w');
fwrite($fp, $new);
fclose($fp);
fwrite($fp,$_POST['user'].":".$_POST['shout']."\n");
fclose($fp);
$shoutbox_page = "http://pps3.awardspace.com/Shoutbox/index.php";
header("Location: $shoutbox_page");
?>
----------->Click Here To Sign Up To Nintendo.com VIP<-----------
like that?