This is what the data file looks like:
<!-- ID: 212047 --> Sunday,_July_13_2003 / SUBJECt <br>Posted by: Username<br>MESSAGE
This is essentially what the code that posts the info is like
<?php
$fw=fopen("data.txt","a");
fputs($fw,"<!-- ID: $idbox -->\t");
fputs($fw,"$date / $subject Posted by: $poster \t");
$newMess = str_replace("\n", "<br />", $message);
fputs($fw, "$newMess \n");
fclose($fw);
?>
I wont actually be editing the second tab, more like the third... Thanks!