Código PHP:
public function obtener_fila($stmt, $fila = null){
unset($this->array);
if ($fila === 0){
$this->array[]=mysql_fetch_assoc($stmt);
}elseif ( $fila === null ) {
while ( $row =@ mysql_fetch_assoc($stmt) ) {
$this->array[] = $row;
}
}
else{
mysql_data_seek($stmt,$fila);
$this->array[]=mysql_fetch_assoc($stmt);
}
return $this->array;
}