na gut...
jetzt ist schweiß und tränen angesagt...
also hier mal das zeugs gaaanz am anfang...
PHP-Code:
<?php
$Quelle = ("test.txt");
$Inhalt = fopen ($Quelle, "rb");
$MeinInhalt = fread ($Inhalt);
fclose ($Inhalt);
?>
statt des schnöden include hab ich jetzt ein
PHP-Code:
<?php echo $MeinInhalt ?>
der teil klappt (schnauf..)
als action hab ich jetzt eine aha.php
PHP-Code:
<?php
$Quelle = ("test.txt");
$paby = fopen($Quelle,"w");
fwrite($paby);
fclose($paby);
?>
jetzt kommt eine fehlermeldung:
Warning: Wrong parameter count for fwrite() in /ec/paby/index/tiny/examples/aha.php on line 4
da fehlt wohl noch was entscheidendes...