Hi,
I am using fwrite to write strings to a text file. It is taking the information to write directly from a database, so certain lines are longer than others. The problem I am having is that when there is a really long string, the text file line seems to truncate at about 70 characters. I have not touched the length argument in the fwrite function (though I tried it with a huge value just to test to no avail).
Basically I am wondering if lines in text files can only be 70 characters in length when bring written using fwrite.
Thanks for any help you can give me!