Jump to content

membership system


kevinritt

Recommended Posts

we have a non profit organization that offers different levels of membership based on a yearly fee. I want to set up a database to organize all the members. This would be just for administrative purposes and not for the members to see. Would a membership system be the way to go or is there another option someone could recommend? I want to be able to add, modify and delete records. I also want to search by name, date, ect. I have a basic idea of how to set this up but I'm looking for tutorials or suggestions. Thanks

Link to comment
https://forums.phpfreaks.com/topic/143910-membership-system/
Share on other sites

You just need to organise your data into tables. Read up on normalisation. Then you can write the queries to search your records. i.e

 

members

===========

memberId

levelId

name

email

username

password

created

 

levels

===========

levelId

title

price

Link to comment
https://forums.phpfreaks.com/topic/143910-membership-system/#findComment-755162
Share on other sites

Thanks Neil. I think this may be more like an address book so to speak because the members won't need to log in - this is only for administrative purposes. I have enough knowledge of PHP MySQL to be dangerous  :D. Do you know of any tutorials that I could use as a guide?

Link to comment
https://forums.phpfreaks.com/topic/143910-membership-system/#findComment-755171
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.