str_replace (doesn't write into file)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • #16
    fopen ("bla", "w"); is das problem schau nochmal hier:
    http://de2.php.net/manual/de/function.fopen.php

    wobei das hier reichen sollte

    $file = fopen("user.txt","w+");
    fwrite($file, "$new_username|$password|$firstname|$surname|$email$split");
    fclose($file);

    Comment


    • #17
      Danke, riesen, riesen DANK, ich war so ziemlich am Verzweifeln.

      Comment

      Working...
      X