Basically, I just wanted to be able to know if I was doing the first instance of a call to mysql_fetch_array(). It is done on something like this.
$result = query;
while( $article = mysql_fetch_array($result) ) {
if ( (mysql returned return record prointer) == 2) {
do something
}
}
I know could grab the first one before I go into the while loop but I wanted to do it like this.