nope...

The 'new line' tages are printed inside the file but not the values produced by the 
counter... 
  ----- Original Message ----- 
  From: Chris Anderson 
  To: James Bartlett ; [EMAIL PROTECTED] 
  Sent: Friday, July 06, 2001 7:25 PM
  Subject: Re: [PHP] Problem writting to file...


  I don't see anything wrong with the code. Does this work:
  <?php
  $fp = fopen("./data.txt", "w+");
  $counter = 0;
  for($counter = 0; $counter <6; $counter++)
  {
      fwrite($fp, $counter . "\n");
  }
  fclose ($fp);
  ?>

  ----- Original Message -----
  From: "James Bartlett" <[EMAIL PROTECTED]>
  To: <[EMAIL PROTECTED]>
  Sent: Friday, July 06, 2001 2:15 PM
  Subject: [PHP] Problem writting to file...


  Hi,

  I'm trying to write data to a file but for some reason it will not store
  numbers in the file...Here's the code I'm using...(as an example)

  <?php
  $fp = fopen("./data.txt", "w+");
  $counter = 0;
  while ($counter <6)
  {
  fwrite($fp, $counter . "\n");
  $counter = $counter +1;
  }
  fclose ($fp);
  ?>

  Thanks for any help...

  James


Reply via email to