Re: [PHP] Need login suggestions

2010-05-03 Thread Karl DeSaulniers
I see, well I have a login that has multiple levels and here is how I have it. Obvious pertinent info has been changed, but you can adopt and add your own. a config file with userlevel values EG: $parent = 2; //Parent Level $student = 1; //Student Level $guest = 0;//Guest level A

RE: [PHP] Need login suggestions

2010-05-03 Thread Ashley M. Kirchner
-Original Message- From: Karl DeSaulniers [mailto:k...@designdrumm.com] Sent: Monday, May 03, 2010 12:03 AM To: PHP Subject: Re: [PHP] Need login suggestions I see, well I have a login that has multiple levels and here is how I have it. Obvious pertinent info has been changed

RE: [PHP] Need login suggestions

2010-05-03 Thread Ashley Sheridan
On Mon, 2010-05-03 at 00:07 -0600, Ashley M. Kirchner wrote: -Original Message- From: Karl DeSaulniers [mailto:k...@designdrumm.com] Sent: Monday, May 03, 2010 12:03 AM To: PHP Subject: Re: [PHP] Need login suggestions I see, well I have a login that has multiple levels

Re: [PHP] Need login suggestions

2010-05-03 Thread Nilesh Govindarajan
On 05/03/2010 09:56 PM, Ashley Sheridan wrote: On Mon, 2010-05-03 at 00:07 -0600, Ashley M. Kirchner wrote: -Original Message- From: Karl DeSaulniers [mailto:k...@designdrumm.com] Sent: Monday, May 03, 2010 12:03 AM To: PHP Subject: Re: [PHP] Need login suggestions I see, well I have

Re: [PHP] Need login suggestions

2010-05-03 Thread tedd
At 8:09 PM -0600 5/2/10, Ashley M. Kirchner wrote: Slightly OT, but I can't think of a better forum to ask this in. I'm sure a lot of us here have at some point or another built a system that requires registration to gain access. What I'm trying to figure is how to set different levels of

RE: [PHP] Need login suggestions

2010-05-03 Thread Bob McConnell
From: Ashley M. Kirchner From: Paul M Foster The only reliable way to resolve this is to let the school administration to handle it. Each registration would *attempt* to register as a student, parent or whatever. Those attempted registrations would go into a wait queue. Meantime, emails

Re: [PHP] Need login suggestions

2010-05-02 Thread Nilesh Govindarajan
On 05/03/2010 07:39 AM, Ashley M. Kirchner wrote: Slightly OT, but I can't think of a better forum to ask this in. I'm sure a lot of us here have at some point or another built a system that requires registration to gain access. What I'm trying to figure is how to set different levels of

RE: [PHP] Need login suggestions

2010-05-02 Thread Ashley M. Kirchner
-Original Message- From: Nilesh Govindarajan [mailto:li...@itech7.com] Sent: Sunday, May 02, 2010 8:20 PM To: php-general@lists.php.net Subject: Re: [PHP] Need login suggestions Its a very bad idea to allow public registration for parents, instead the school IT department should

Re: [PHP] Need login suggestions

2010-05-02 Thread Nathan Rixham
Ashley M. Kirchner wrote: -Original Message- From: Nilesh Govindarajan [mailto:li...@itech7.com] Sent: Sunday, May 02, 2010 8:20 PM To: php-general@lists.php.net Subject: Re: [PHP] Need login suggestions Its a very bad idea to allow public registration for parents, instead

RE: [PHP] Need login suggestions

2010-05-02 Thread Ashley M. Kirchner
-Original Message- From: Nathan Rixham [mailto:nrix...@gmail.com] Sent: Sunday, May 02, 2010 8:39 PM To: Ashley M. Kirchner Cc: php-general@lists.php.net; Nilesh Govindarajan Subject: Re: [PHP] Need login suggestions Ashley, I think Nilesh, (and later both Bobby I), were just

Re: [PHP] Need login suggestions

2010-05-02 Thread Angus Mann
We're building a large site for a school district, to be used by both students and parents. When a student logs in, they gain some access to the site, and when a parent logs in, they gain access to other sections on the site. That's all fine and dandy, it's the actual registration process

Re: [PHP] Need login suggestions

2010-05-02 Thread Mark Kelly
Hi. On Monday 03 May 2010 at 03:49 Ashley M. Kirchner wrote: [snip] So what if a student registers on the wrong side of the wall? Nothing happens [snip] Kids would be registering for a photo contest, parents will be registering for something completely different. You might try

RE: [PHP] Need login suggestions

2010-05-02 Thread Ashley M. Kirchner
-Original Message- From: Angus Mann [mailto:angusm...@pobox.com] Sent: Sunday, May 02, 2010 10:43 PM To: Ashley M. Kirchner; php-general@lists.php.net Subject: Re: [PHP] Need login suggestions It sounds like it really doesn't matter how you do it. Nothing bad happens if a student

Re: [PHP] Need login suggestions

2010-05-02 Thread Paul M Foster
On Sun, May 02, 2010 at 08:09:07PM -0600, Ashley M. Kirchner wrote: Slightly OT, but I can't think of a better forum to ask this in. I'm sure a lot of us here have at some point or another built a system that requires registration to gain access. What I'm trying to figure is how to set

Re: [PHP] Need login suggestions

2010-05-02 Thread Adam Richardson
On Mon, May 3, 2010 at 12:42 AM, Angus Mann angusm...@pobox.com wrote: We're building a large site for a school district, to be used by both students and parents. When a student logs in, they gain some access to the site, and when a parent logs in, they gain access to other sections on the

RE: [PHP] Need login suggestions

2010-05-02 Thread Ashley M. Kirchner
-Original Message- From: Paul M Foster [mailto:pa...@quillandmouse.com] Sent: Sunday, May 02, 2010 10:53 PM To: php-general@lists.php.net Subject: Re: [PHP] Need login suggestions The only reliable way to resolve this is to let the school administration to handle it. Each

RE: [PHP] Need login suggestions

2010-05-02 Thread Ashley M. Kirchner
-Original Message- From: Adam Richardson [mailto:simples...@gmail.com] Sent: Sunday, May 02, 2010 10:59 PM To: php-general@lists.php.net Subject: Re: [PHP] Need login suggestions Just be cautious with FERPA guidelines (which can actually get quite confusing) if you're doing

Re: [PHP] Need login suggestions

2010-05-02 Thread Nilesh Govindarajan
On 05/03/2010 10:33 AM, Ashley M. Kirchner wrote: -Original Message- From: Paul M Foster [mailto:pa...@quillandmouse.com] Sent: Sunday, May 02, 2010 10:53 PM To: php-general@lists.php.net Subject: Re: [PHP] Need login suggestions The only reliable way to resolve this is to let

Re: [PHP] Need login suggestions

2010-05-02 Thread Karl DeSaulniers
Hi Ashley, I would have your database that is attached to this part of the website, verify with another database that stores all your student and parent info for your school and when they register, you can actually check against a database of students that actually attend the school and the

RE: [PHP] Need login suggestions

2010-05-02 Thread Ashley M. Kirchner
-Original Message- From: Karl DeSaulniers [mailto:k...@designdrumm.com] Sent: Sunday, May 02, 2010 11:44 PM To: PHP Subject: Re: [PHP] Need login suggestions Hi Ashley, I would have your database that is attached to this part of the website, verify with another database