1 COMMENTS
Archive for June, 2010
Zend Studio is strict, much much more stricter towards syntax than PHP itself.
I finally came to this point where i find not normal regular
while($row=mysql_fetch_array)) {/* ... */} because Zend Studio also finds it not normal.
To make such statement “valid” not only for Zend Studio, but also for common sense, use this instead:
while(($row=mysql_fetch_array)) !== false) {/* ... */} Read the rest of this entry »


