Hi all,

I've made a little experiment.
I made a simple form with a textarea field.
I've typed a single digit in that field and I have submitted the form.
It was a single digit, with no enter after it.

I've saved the field to a file.
The file has 3 bytes instead of 1 (for a LF) or 2 for CRLF.

I am using Internet Explorer.

Can you tell me what kind of end of line is this?

The code was:

$text = $q -> param ('text');
print FILE $text;

I've opened the file in binary mode to see what are the codes of these
characters, and they are:
0D 0D 0A

This means 013 013 010

It is a kind of CR/CR/Lf?

Thank you!

Teddy,
[EMAIL PROTECTED]




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to