try this
<?php
$fp = fopen("./data.txt", "w+");
$counter = 0;
while ($counter < 6)
{
$counter++;
fwrite($fp, $counter . "\n");
}
fclose ($fp);
?>
Jerry Lake
Interface Engineering Technician
Europa Communications - http://www.europa.com
Pacifier Online - http://www.pacifier.com
-----Original Message-----
From: James Bartlett [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 06, 2001 11:30 AM
To: [EMAIL PROTECTED]
Subject: Re: [PHP] Problem writting to file...
No errors at all...
----- Original Message -----
From: Tyler Longren
To: php-general ; James Bartlett
Sent: Friday, July 06, 2001 7:29 PM
Subject: Re: [PHP] Problem writting to file...
Any errors being given to you?
Tyler
----- Original Message -----
From: "James Bartlett" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, July 06, 2001 1: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
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]