Hi well on my other post someone helped me and gave me the right code:
Here is my php so fare:
<?php
$content = "{$_POST['username']} is buying the item: {$_POST['itemname']} for the amount of: {$_POST['foramount']}";
$file = "ge.txt";
$Saved_File = fopen($file, 'w');
fwrite($Saved_File, $content);
fclose($Saved_File);
?>
And this is great, but it keeped on re-writing the file.
And i fixed that by changing the :
$Saved_File = fopen($file, 'w');
To :
$Saved_File = fopen($file, 'a');
And now it just keeps saving it so there is a new line of text, but then it just keeps adding on to the same sentence.
Is there a way to make it have a new link so its in a list? Thanks.