ok
I don't have alot of time but I'll try to give you some pointers
first of all look at php.net for more info on how to use these functions
use fopen to connect to your text file
ie
$f = fopen(yourfilename, "r");
ok
put your general table html into a string
ie
$htmlout = "<table>"
then start a while loop
while (!feof($f)){
in this loop use
$buffer = fgets($f, 128);
to read in the first line
then split $buffer into an array
$buffsplit = split("|", $buffer);
ok so $buffsplit contains your data
ie
$buffsplit[0] = "posts/.html"
$buffsplit[1] = "Post "
now do a string to add this to your $htmlout string from before
ie
$htmlout .="<tr><td>".$buffsplit[0]."</td>td>".$buffsplit[1]."</td><td>".$buffsplit[2]."</td><td>".$buffsplit[3]."</td></tr>";
this should all be on one line of code
end your while loop here
}
echo your $htmlout string to show your results
phew!!
hoepfully this will work