Jump to content

Psychophylus

Members
  • Posts

    4
  • Joined

  • Last visited

Psychophylus's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. Ah. Sorry, I'm really new to PHP.I'm going to use fopen(), fwrite(), and fclose(). My browser isn't recognizing file_put_contents()...
  2. Yea, it does! Thanks!Would file_put_contents() be the same as fwrite()?EDIT: No, I see it wouldn't. Never mind that.
  3. I'm pretty new to PHP. I wrote this little code here: $file = fopen("data.txt", "a+");$text = $_POST['text'];$data = fwrite($file, "$text <br>");require('data.txt'); How could I make this insert the text into the beginning of the file without writing over what's already there?
×
×
  • Create New...