Re: [PHP] Pasword Protecting several pages

2008-07-20 Thread R.C.
set, then redirect to login. > > Thank you, > Micah Gersten > onShore Networks > Internal Developer > http://www.onshore.com > > > > R.C. wrote: > > I'm still trying to get this scenario worked out and don't seem to be able > > to get it done. > &g

[PHP] Pasword Protecting several pages

2008-07-20 Thread R.C.
I'm still trying to get this scenario worked out and don't seem to be able to get it done. Here's what I'm trying to do: User logs into a login page and inputs email address and password. User accessess password protected page, which contains a few links. User clicks on one of the links, opens p

[PHP] SESSIONS QUESTION

2008-07-18 Thread R.C.
Hi group, I'm still having trouble with sessions on a page and need help. I've been working with all sorts of configurations on this one but it doesn't seem to be working properly. Here's the scenario: I have a login.html page that thas two fields for user input i.e. a password (that is given t

Re: [PHP] Sessions across multiple pages

2008-06-20 Thread R.C.
r '. $_POST ['email'].' has logged in.'; mail(' [EMAIL PROTECTED]', $email . ' logged in', $message, $headers); } else { echo include("loginfail.html"); exit(); } ?> Hope this made sense. Thanks for your assistance. R.C. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Sessions across multiple pages

2008-06-20 Thread R.C.
L PROTECTED]', $email . ' logged in', $message, $headers); } else { echo include("loginfail.html"); exit(); } ?> Hope this made sense. Thanks for your assistance. R.C. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
Thank you Daniel, I think that did the trick. Am checking this out now... Best R.C. ""Daniel Brown"" <[EMAIL PROTECTED]> wrote in message > > session_start(); > > > > $_SESSION ['userpass'] = $_POST ['pass']; > > $_SE

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
l the variatons on the "video" word. I'm looking for the code to make this whole word case-insensitive, no matter which letter is cap or not can you add to this code below please? Thanks much R.C. session_start(); $_SESSION ['userpass'] = $_POST ['pass']; $_SE

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
in either Video or VIDEO or video. Now in the below code auth snippet WHERE do I input some code to make this one word case-insensitive UPON INPUT. thanks R.C. wrote in message news:[EMAIL PROTECTED] > At 8:59 AM -0700 6/19/08, R.C. wrote: > >Tedd, > > > >thank you for

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
d, it will still validate? Thank you for your patience. I'm learning Best R.C. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
ld be left alone. BTW: I used Chris' and Nathan's code and it's working fine. Best R.C. "tedd" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Why? > > If a user has selected a password, then leave it alone and don't > change it -- it&

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
Nathan, Thank you ... very thorough. Best R.C. ""Nathan Nobbe"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > i hate posting the same answer to a given question thats already been > posted, but i had this all typed in when chris submitted h

Re: [PHP] Case sensitive password

2008-06-19 Thread R.C.
Chris, Thank you. That worked good. Appreciate the assistance. Best R.C. "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > R.C. wrote: > > Thank you for your reply. The password is not stored, actually, like in a > > databse. We're only

Re: [PHP] Case sensitive password

2008-06-18 Thread R.C.
this case. Is this what you are recommending below? Best R.C. "Chris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > R.C. wrote: > > I have coded a php page that accepts a password. What is the code to make > > sure the password entered is NOT cas

[PHP] Case sensitive password

2008-06-18 Thread R.C.
I have coded a php page that accepts a password. What is the code to make sure the password entered is NOT case-sensitive? Thanks much R.C. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Password Protecting a page and email notification

2008-06-17 Thread R.C.
the protected page* which works actually fine for the protection*/ "; echo "Please log in at HERE to enter your Username and Password"; exit(); } Can this be done on one form i.e. login.php? I have 4 textfields set up: username, password, email, name (for the person sending the e