PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
And whenever any data is being sent I got this error:
Warning: preg_match() [function.preg-match]: Compilation failed: range out of order in character class at offset 82 in C:\Program Files\(path)\functions_class.php on line 60
greyhoundcode wrote:Could it be an o as in orange when a 0 like 0.000 is required? As in, a typo?
Yes. 0x30FF in Unicode is the end of the (Japanese) katakana alphabet. 0x3oFF isn't valid hexadecimal: preg_match assumes you want the character 0x3, but since it requires that character set ranges are from low to high, it crashes.