(if there is one...) whats the ASCII value for a line break?
=================================================
I'm having some issues because i am making something that turns text into font that looks like you wrote it, and one of the things it does is crossout a character (using the font tom-crossout), then it echo's it again in a readable font (so two different fonts - readable, and crossed out).
If i could use something like
PHP Code:
if (ord($charascii) == XX){
$font = tom-readable;
}
it would prevent this.
If there isn't a way to do this with ASCII, how could I exclude line breaks?
Thanks