Without the movenext it'll get stuck in a loop and never come out of it (not reaching the .eof).
The error you are getting is an incorrectly named item in the recordset, which means there's a typo somewhere in the field names.
Try replacing them with their ordinal position instead:
Rs(0)
Rs(1)
etc...and see if that helps.
As a final note, if you are expecting more than 3 or 4 people to use the website at the same time, I would highly recommend NOT using MS Access, but using MySQL or SQL Express instead (both are free).
The error you are getting is an incorrectly named item in the recordset, which means there's a typo somewhere in the field names.
Try replacing them with their ordinal position instead:
Rs(0)
Rs(1)
etc...and see if that helps.
As a final note, if you are expecting more than 3 or 4 people to use the website at the same time, I would highly recommend NOT using MS Access, but using MySQL or SQL Express instead (both are free).