Looking for simple Database for Windows/LINUX with web - to maintain member list?. (For example: John Smith, Annual member or Life member / Address / Phone / e-mail).
Looking for simple Database for Windows/LINUX with web - to maintain member list?
Collapse
X
-
SQLite is really small, light and fast but you may not need a database at all.
name:address:ph one:email:join_ date
repeat
Or
<member>
<name></name>
<address></address>
....
</member> -
what do you mean with 'simple' ... you might use any free DBMS out there ... there are MySQL or PostgreSQL for example ... they are available for Linux and/or Win ... have a lot of free tools and are quite simple to connect remotely to a webpage through PHP ...Comment
-
I need to maintain a list of people details for community (Name, address, phone, e-mail, annual/life member), looking for database application to keep these details using web based app. I should be able to change details later like any changes in e-mail/address/phone based on last/first name.
Please let me know suitable application either for windows or linux. appreciated.Comment
-
as i understand you right ... you want a readymade app for that task? ... is that for admin purpose? then you could use any of the already mentioned DBMS and use a webbased interface like phpMyAdmin for mySQL or similar ... when it should be a public page for a user then i would suggest to write a small maintainance form for that purpose ...Comment
Comment