<div dir="ltr">Hi,<div>I was going through the codes and at many places I found use of <b>count() </b>inside the <b>for</b> statement.</div><div>I think statements like </div><div><br></div><div><b>for($i = 0; $i < count($arr); $i++)</b><br clear="all">

<div><div dir="ltr"><div>should be converted with statements like</div><div><br></div><div><b>$len = count($arr);</b></div><div><b>for($i = 0; $i < $len; $i++)</b><br></div><div><b><br></b></div><div>this would help us speed up the whole phpMyAdmin system.</div>

<div><br></div><div><br></div><div>Regards,</div><font color="#666666">Minhaz</font><div><font color="#666666"><a href="http://cistoner.org" target="_blank">cistoner.org</a></font></div></div></div>
</div></div>