Its used in loops to loop through recordsets that contain more then 1 record. Example
<?
$SQL = "SELECT * FROM Test Where type='2'";
$result = mysql_query($SQL);
While ($row = mysql_fetch_array($result))
echo $row['name']; // name being field name in test
}
?>
Make Sence?
GL