Hi,
<?
$file = 'irgendwas.txt';
if ($fp) {
$fp = fopen($file, 'a'); # a wie append
$wr = fputs($fp, $cont);
$cl = fclose($fp);
}
?>
reicht das ...
Hi,
<?
$file = 'irgendwas.txt';
if ($fp) {
$fp = fopen($file, 'a'); # a wie append
$wr = fputs($fp, $cont);
$cl = fclose($fp);
}
?>
reicht das ...