hallo
ich hab das problem das ich nicht eine datei einlesen und den innhalt in die selbe datei schreiben kann.
[php:1:bbfc083cb0]<?php
$dat = "gb/gb.html";
if (($txt == '') and ($betr = ''))
echo "kein beitrag";
else {
$book1 = '<tr><td><div align="center"><h3>';
$book3 = '</h3></div></td></tr>';
if($mail == ' ');
else{
$book4 = '<td width="$brs">[email='$mail']mail[/email]
';}
if($web == ' ');
else{
$book5 = 'internetseite</td>';}
$bookall = "$book1 $betr $book3 $book4 $book5 $txt";
$int = fopen ("$dat", "r+");
fputs ($int, $bookall);
fclose ($int);
}
?>[/php:1:bbfc083cb0]