open($strSQL); # Finally all methods are ready to use. $rs->bof; # ( Boolean ) Flag BOF : Begin of File. $rs->eof; # ( Boolean ) Flag EOF : End of File. Boolean $rs->field("name of the field"); # ( String ) Call the current registerīs Field by the name. $rs->field(1); # ( String ) You may also call the field by the number. Camuflated Polimorphism =). $rs->first(); # ( Void ) Pointer now points to the first register. $rs->last(); # ( Void ) Pointer now points to the last register. $rs->next(); # ( Void ) Pointer to next register. $rs->previous(); # ( Void ) Pointer to previous register. $rs->count_registers(); # ( Integer ) Returns the total of fields that recordset contains. # simple loop to show all registers while(!$rs->eof){ echo($rs->field("rep_str_texto") . "
"); $rs->next(); } ?>