Code to add to group for MySQL
Moderator: General Moderators
Code to add to group for MySQL
Ok here is my situation everyone has been very helpfull so here is my next question.
I downloaded a script to create a secure login for Patients and Referral sources, when they register i would like to add a series of raido buttons that would allow the register to select if they are a Referral or a Patient and then only give them access to the area specified for their group.
I would also like to restrict them access untill the Administrator (me) grants them access so i can verify their credentials.
Any ideas on a script i can use for this or any other reccommendations to make this happen??
Thanks
~Snapple
I downloaded a script to create a secure login for Patients and Referral sources, when they register i would like to add a series of raido buttons that would allow the register to select if they are a Referral or a Patient and then only give them access to the area specified for their group.
I would also like to restrict them access untill the Administrator (me) grants them access so i can verify their credentials.
Any ideas on a script i can use for this or any other reccommendations to make this happen??
Thanks
~Snapple
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
I doubt there is an out of the box package like this. There are few parts to this that you will need to tackle. The first is taking their stated group. The next is verifying that. The third is a queue for admins to approve and the fourth is the sectioned login areas. You may want to take this a step at a time and build it yourself.
Yeah im just not that cool yet!You may want to take this a step at a time and build it yourself.
I do need a way to all their group to the database i can probally figure that out using a drop down box to select.
How can i stop them from having access untill i approve?
and i can restrict access to pages unless they are in a specific group. but i need to authenticate their group before they log in.
Any Ideas, being that im not Cool enough to Build it yet???
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Single enum("Yes","No") field or a TinyInt (1 or 0) field named member_approved. Default it to 'No" or 0, then when you approve them. Change that field to "Yes" or 1. Until they show "Yes" or 1, they are not approved entry.Assured99 wrote:[How can i stop them from having access untill i approve? and i can restrict access to pages unless they are in a specific group. but i need to authenticate their group before they log in.
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
Viewing invoices, not much. Paying invoices, a heck of a lot more involved if doing it through your site. If running them through a gateway, then that is a fairly simple implementation of the software/web API's given by the gateway.Assured99 wrote:Also what would i use if i wanted to allow customers to view invoices and pay bills online???
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA
- RobertGonzalez
- Site Administrator
- Posts: 14293
- Joined: Tue Sep 09, 2003 6:04 pm
- Location: Fremont, CA, USA