MYSQL search result loosing first record

Hi folks,

Simple search result to display records, code below does not display the first record. If I echo the total records found say 6, the echo code below only displays 5 records.


while ($row2 = mysql_fetch_array($result_applicants2)){ 
$emails = $row2['email'];
echo "$emails, ";
			}


Any ideas?