[PHP] Re: password field validation

2009-03-12 Thread Shawn McKenzie
Jason Todd Slack-Moehrle wrote: Hi All, I have an input field with type=password. I am trying to do some error checking to see if the user puts a value in after they submit the form (i.e not left it blank) Here is what I have: on form: Password: input id=PASSWORD name=PASSWORD

[PHP] Re: Password Protecting a page and email notification

2008-06-17 Thread Jon Drukman
R.C. wrote: I'm going to ask you PHP gurus if someone can give me a hand in trying to get this resolved. I'm fairly new to PHP and learning as I go. I've got two page login.php and video.php. Video.php is supposed to be protected i.e. if someone clicks on the direct link or brings up the page

[PHP] Re: Password encryption and password retrieval

2005-05-10 Thread Satyam
Usually passwords are encrypted using one-way algorithms. Of course, there are two-way algorithms which can be reversed, but time and experience has shown that not to be necessary for user passwords. A one-way algorithm is much like the modulus operation: 15 % 4 gives you 3 but even if you

[PHP] Re: password case sensitive

2005-02-23 Thread M. Sokolewicz
William Stokes wrote: Hello, I got my little user authentication to work but now I would like to know how to make and check the (upper/lower) case in password. To put it simple. I want users password to be case sensitive. The authentication checks for returned number of rows from DB. If there

[PHP] Re: Password Protection

2005-02-17 Thread Steve
Kevin Javia wrote: I am experimenting on my site and I want to make it password protected like www.realsolution.com. If any one enters correct user name and password, only then they will be able to enter into my site. How can I do that in PHP? Any ideas? Thanks a ton in advance. Try this:

[PHP] Re: Password Protection

2005-02-17 Thread Kevin Javia
Thank you people. Kevin Javia [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I am experimenting on my site and I want to make it password protected like www.realsolution.com. If any one enters correct user name and password, only then they will be able to enter into my site. How

[PHP] Re: Password protected downloads

2004-06-13 Thread Torsten Roehr
Maldiv [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hello, I want to make a password protected download possibility on my site. I know how can I handle normal user login, but how can I protect a download from guests? I mean if user navigate to www.demo.com/mydownload.zip than he

[PHP] Re: Password

2004-04-07 Thread Ligaya Turmelle
You have an error with your brackets. Your code looks like this if (strlen($_POST['password1']) 0) { if ($_POST['password1'] ==($_POST['password2'] { $password = TRUE; } if (strlen($_POST['password1']) 0) { if ($_POST['password1']

[PHP] Re: password protection/encryption

2003-12-08 Thread Mike
Chris Mach wrote: Greetings, I'm working on a project that involves a password protected area of a website. Some one also involved brought up the point that this area should be secure (Whit the lock icon indicating it is encrypted). In this particular project the password protected area will be a

[PHP] Re: password protection/encryption

2003-12-06 Thread Jas
Some questions to ask yourself... 1. Am I storing personally identifiable information (eg. Names, addresses, phone numbers, email addresses, credit card data)? 2. Will this data be stored in a text file or database? 3. Is this text file or database directly connected to the internet? 4. What type

RE: [PHP] Re: Password storage system

2003-08-08 Thread Daevid Vincent
Thanks, but I guess I forgot to mention it should be web-interface... http://passwordms.sourceforge.net/index.php For anyone wanting to look. -Original Message- Try PMS: Password Management System. I believe it can be found on sourceforge. -- PHP General Mailing List

RE: [PHP] Re: Password storage system

2003-08-07 Thread Chris W. Parker
Daevid Vincent [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] I'm in search of an 'enterprise level' password storage system. Try PMS: Password Management System. I believe it can be found on sourceforge. hth, chris. -- PHP General Mailing List (http://www.php.net/) To

[PHP] Re: Password storage system

2003-08-06 Thread Sek-Mun Wong
(This is a bit off topic, but I though might be helpful to some developers, it deals more with security concepts than PHP per se) I may be going out on a limb here, but I doubt you'll find something in the GPL/open source domain. we've built our own and pretty much does what you've described

[PHP] Re: Password generator

2003-06-20 Thread Manuel Lemos
Hello, On 06/17/2003 06:45 AM, Davy Obdam wrote: I have to make a password generator, but i have a little problem. You may also want to try any of these classes: http://www.phpclasses.org/password%20generation -- Regards, Manuel Lemos Free ready to use OOP components written in PHP

[PHP] Re: Password generator

2003-06-17 Thread Andrei BEJENARU
Here's a little function that could help you... It uses the ASCII table to generate the characters and it still needs to be customized for any length and to deny the use of the special characters... Don't forget to set the mt seed! function generatePassword() { $passwd = ;

[PHP] Re: PASSWORD()

2002-08-29 Thread Mike Tsapenko
Hello, Victor. Your queries seem to be OK. The second one has typo: after should be single quot. Anyway this is a problem with MySQL but not with PHP. -- Mike Tsapenko Chief of Web-development Dept. AlarIT http://www.AlarIT.com Victor [EMAIL PROTECTED] ???/ ?

[PHP] Re: PASSWORD()

2002-08-29 Thread Tony Harrison
I asked a similar question the other day, I was told to use the password function on the field name, not the value, i havent tested this and its a weird way to do things, and why cant both work? (if any) Mike Tsapenko [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL

[PHP] Re: Password in script

2002-07-18 Thread Monty
The password code will be parsed out by PHP, so, it won't be viewable in the HTML source delivered to the browser. Some advice: set up a user for your database that has the minimal amount of access necessary to perform queries or writing to the database and use that in your scripts. Don't ever

[PHP] Re: password=password('$password') ----- ? help me... :P

2002-01-21 Thread Robert V. Zwink
to understand them. Robert V. Zwink http://www.zwink.net/daid.php -Original Message- From: LaserJetter [mailto:[EMAIL PROTECTED]] Sent: Saturday, January 19, 2002 3:43 PM To: [EMAIL PROTECTED] Subject: [PHP] Re: password=password('$password') - ? help me... :P Forget that last post - sorry

[PHP] Re: password=password('$password') ----- ? help me... :P

2002-01-19 Thread LaserJetter
Try changing all the single quotes to double quotes (' to ). As far as I know, PHP only expands the contents of the variable if it inside double quotes, otherwise it reads it as $variable LJ Hawk [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... I've been trying

[PHP] Re: password=password('$password') ----- ? help me... :P

2002-01-19 Thread LaserJetter
Forget that last post - sorry!!! Instead of using password('$password') in the query string, I would insert a line before connecting to the DB: $newpass = password($password)-- dont need quotes round here then $query = SELECT username,password FROM users WHERE username=$username AND

[PHP] Re: password why?

2001-09-04 Thread _lallous
I didn't look very well at your script, but it seems that you're calling mysql_numrows() instead of mysql_num_rows() Gary [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Hello Everybody, I have a script that checks if the password and password confirm are the