Vernk
10-10-2012, 12:09 AM
$cnt=0;
while($something = mysql_fetch_array($query) true && $cnt<100){
//process....
$cnt++;
}
Will this work , or something like this I am trying to achieve
while($something = mysql_fetch_array($query) true && $cnt<100){
//process....
$cnt++;
}
Will this work , or something like this I am trying to achieve