login  Naam:   Wachtwoord: 
Registreer je!
 Forum

hulp aub

Offline vinTage - 30/11/2004 16:36
Avatar van vinTageNieuw lid Ik heb het volgende scriptje gevonden
  1. <?php
  2. $filename = 'txt.txt';
  3. $somecontent = "Add this to the file\n";
  4.  
  5. // Let's make sure the file exists and is writable first.
  6. if (is_writable($filename)) {
  7.  
  8. // In our example we're opening $filename in append mode.
  9. // The file pointer is at the bottom of the file hence
  10. // that's where $somecontent will go when we fwrite() it.
  11. if (!$handle = fopen($filename, 'a')) {
  12. echo "Cannot open file ($filename)";
  13. }
  14.  
  15. // Write $somecontent to our opened file.
  16. if (fwrite($handle, $somecontent) === FALSE) {
  17. echo "Cannot write to file ($filename)";
  18. }
  19.  
  20. echo "Success, wrote ($somecontent) to file ($filename)";
  21.  
  22. fclose($handle);
  23.  
  24. } else {
  25. echo "The file $filename is not writable";
  26. }
  27. ?>

Nu ben ik op zoek naar een manier om die $somecontent via een textveld in deze pagina te bepalen, zodat ik het dus online kan toevoegen ipv de txt.txt te openen/aanpassen/uploaden.

als iemand mij kan helpen zou ik dat zeer op prijs stellen.

alvast bedankt.

0 antwoorden

Gesponsorde links
Er zijn nog geen reacties op dit bericht.
Dit onderwerp is gesloten.
Actieve forumberichten
© 2002-2024 Sitemasters.be - Regels - Laadtijd: 0.198s