note the fields above if the movetonext(), movetolast(), movetoprev(), movetofirst(), corresponds below : "; print "
move to first row"; $my_odbc->movetofirst(); print $my_odbc->getfield("author"); print "
move to last row"; $my_odbc->movetolast(); print $my_odbc->getfield("author"); print "
move to prev row"; $my_odbc->movetoprev(); print $my_odbc->getfield("author"); print "
move to next row"; $my_odbc->movetonext(); print $my_odbc->getfield("author"); print "
"; $my_odbc->free() /* clear out the memory */ $my_odbc->close(); /* close connection */ ?> Thats all folks, enjoy and have a nice coding =). Some features will be added shortly. Example /* display all fields */ while (!$my_odbc->eof()){ print $my_odbc->getfield("author"); /* displays the field */ print ""; $my_odbc->movetonext(); } /*note : connect to access database only.... mysql is still under contruction */