Forum Moderators: coopster
$data = sscanf($IncommingDATA, "%s\r");
My incomming data is like a file with tabs between items and return ending a line. The php functions don't seem to like this and often work backwards than I exspect?
Someone got a way to grab a line parse it and grab the next line?
Note: Text from a form not a file!
Thanks
To parse the newlines in a text area, maybe you could use explode() [php.net] on the variable value for the textarea?