Jump to content

JimiLives

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

JimiLives's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi all, here is the problem: I have a form that has a multiline text box i have labelled as "terms", the users can paste up to 2000 lines in the terms box and i want to save each group of 100 lines into a seperate text file. So how do i loop this and have it cut and go to next file after 100 lines have been written? Any help would be greatly appreciated, here is the code I have now that is grabbing the terms they enter and saving it to a single file, it works great but only saves all of the terms to one file: <?php  //write keywords to a file $data = $_POST["terms"];  $file = "terms.txt"; $file_handle = fopen($file,"a");    fwrite($file_handle, $data); fclose($file_handle);  ?>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.