I need insert some variable ito log.txt file but every item (variable) must
be on other line
how to do this ?

  $fp1 = Fopen("D:\\log.txt","a+");
  fwrite($fp1,$start);
  fwrite($fp1,"$array[0]");
  fwrite($fp1,"$array[1]");
  .....
  fwrite($fp1,$end);
  Fclose($fp1);


roman


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to