Reading about define() vs const…
PHP define() vs const
Reply
Reading about define() vs const…
I needed to know my options for htmlentities character encoding support today. The PHP documentation had everything I needed to know. I ended up adding these constants to my code:
const UTF8_ENCODING = 'UTF-8'; const ASCII_ENCODING = 'ISO-8859-1';
A great article on Wikipedia about Newlines…
Using PHP Output Buffering Control…
Reading about MySQL Integer Types.