Just one of the more paranoid warnings.
It's because you never gave $count a value before you incremented it. In a sense, this means that $count could be anything - usually 0, but it could possibly be something else depending on how the script was called and PHP configuration.
So the warning goes in there as a safety catch - a reminder that $count's value can't really be trusted.
Besides, you could have meant $cont, but misspelled it.
The warning can be turned off, either in php.ini or in the script with the error_reporting() function.