Einzelnen Beitrag anzeigen
Alt 20.03.2004, 21:22   #2
jak
Inventar
 
Registriert seit: 13.06.2001
Beiträge: 1.830


Standard

Erste Anlaufstelle für alle php-Fragen:
www.php.net
An und für sich müsste dein Problem mit fopen
lösbar sein.
Außerdem solltest du dir noch fwrite und fread ansehen.
PHP-Code:
function writeFile($n){
 
#n ist z.B. eine fortlaufende Nummer
 
$filename="dateiname"._.$n
 $file
=fopen($file,a);
 
fwrite($file,"inhalt")
 
fclose($file);

Jak
____________________________________
Join the DNRC | Godwin\'s Law (thx@stona)
Documentation is like sex: If it\'s good, it\'s very, very good. If it\'s bad, it\'s better than nothing.
\"In theory, theory and practice are the same. In practice, they are not\" (Lawrence Berra)
jak ist offline   Mit Zitat antworten