hi there.. i am getting records from tables. and now i want want to find some thing liek enf of file so that i could start the loop uptil end of array.. i didn't have any count f array...or if some on could tell me any array count function thanks
use this to get number of returned rows
mysql_num_rows( $result );
to get the size of an array use :
$sizeOfArray = sizeof ( $yourArray );