I was getting blank PHP output while working on my latest Facebook application today. It was pretty frustrating. PHP won’t even report any errors with error_reporting(E_ALL)! I don’t understand why this is. flush() didn’t help either.
Do you see anything wrong with the following:
for (int $i = 1; $i <= 20; $i++) {
The problem was the “int”. Remove that, and it works:
for ($i = 1; $i <= 20; $i++) {