>   "James Bartlett" <[EMAIL PROTECTED]> wrote:
>   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);
>   ?>

Is it writing anything out?
-- 
John Meyer
Programmer
[EMAIL PROTECTED]

-- 
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]

Reply via email to