Dr Dau
ich wisch hier durch
Hallo!
Ich will eine Textdatei (Datenbank) ab der 2. Zeile auslesen weil in der 1. Zeile die Feldnamen stehen.
Ich weiss jedoch nicht wie dass geht.
Gruss Dr Dau
Ich will eine Textdatei (Datenbank) ab der 2. Zeile auslesen weil in der 1. Zeile die Feldnamen stehen.
Ich weiss jedoch nicht wie dass geht.
PHP:
<?php
$datei = fopen("datenbank.txt", "r");
while (!feof($datei))
{
$zeile = fgets($datei, 512);
$eintrag = explode(";", trim($zeile));
?>
<tr>
<td valign="top" width="95" bgcolor="#C0D2FE" style="border-right:1px solid black; border-top:1px solid black;">Nickname</td>
<td valign="top" bgcolor="#C0D2FE" style="border-top:1px solid black;"><a href="mailto:<?php echo $eintrag[3]; ?>" title="eMail"><?php echo wordwrap($eintrag[2],90,"<br>",1); ?></a> </td>
</tr>
<tr>
<td valign="top" style="border-right:1px solid black;">Vorname</td>
<td valign="top"><?php echo wordwrap(basename($eintrag[0]),80,"<br>",1); ?> </td>
</tr>
<tr>
<td valign="top" style="border-right:1px solid black;">Nachname</td>
<td valign="top"><?php echo wordwrap($eintrag[1],80,"<br>",1); ?> </td>
</tr>
<?php
}
fclose($datei);
?>