Jump to content

Need help with delimit a text file to a table


olebrum

Recommended Posts

Hi, this is my first post (just wanted you to know)!

I have a "small" problem. I got a text file with results that i want to delimit and put into a table. The text generated to a file is:
$name|$score|$date

in a text file called, liste.txt, it will be like this:
Ole Lasse Johansen|10|10-08-2006 13:54:40

I want this text to be in a table:
[table]
  [tr]
    [td]Navn[/td]
    [td]Poeng (x av 10)[/td]
    [td]Dato[/td]
  [/tr]
  [tr]
    [td]Ole Lasse Johansen[/td]
    [td]10[/td]
    [td]10-08-2006 13:54:40[/td]
  [/tr]
[/table]

I wrote this script, but can't get it to work, how can i get it to work??

[code]<HTML>
<HEAD>
  <TITLE>Spill: Desimal, Binær og Heksadesimal tall</TITLE>
</HEAD>
<BODY>

<FONT SIZE="4">Spill: Desimal, Binær og Heksadesimal tall</FONT><BR><BR>

<?php

$liste = "./liste.txt";
if(!($fp = fopen($liste, "r"))) die ("Kan ikke åpne $liste.");
$innhold = fread($fp);
fclose($fp);

$delimiter = "|";
$splitinnhold = explode($delimiter, $innhold);
$teller = "";

?>

<TABLE WIDTH="80%" BORDER="1">
  <TR>
    <TD>Navn</TD>
    <TD>Poeng (x av 10)</TD>
    <TD>Dato</TD>
  </TR>

<?php

foreach ($splitinnhold as $text)
{
  $kolonne=0;
  $kolonner=3;

  echo "  <TR>\n";
 
  while($kolonne < $kolonner)
  {
    echo $text;
    $kolonne++;
    $counter++;
  }
  echo "  </TR>\n";
}

?>

</TABLE>

</BODY>
</HTML>[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.