RE: regular expression help

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



That does not work either... I can not make the statement fail!!!

I have tried 

$password = "123456";
and
$password = "abcdef";

I have change the if statement to what is below and past in all letters and
it still works?

if (preg_match ('/\d/', $password)) {

   die ("You must have a number between 2 letters in your password ...
0-9");

// Larry
 
 
-----Original Message-----
From: Matt Matijevich [mailto:matijevich@xxxxxxxxxxxxxxxxxxxxxxxx] 
Sent: Thursday, June 24, 2004 12:11 PM
To: php-db@xxxxxxxxxxxxx; lgs@xxxxxxxxxxx
Subject: Re:  regular expression help

try this 

$password = 'abcdef'; 

if (preg_match ('/\w\d\w/', $password)) {

   die ("You must have a number between 2 letters in your password ...
0-9");

}

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


----------------------------------------
My Inbox is protected by SPAMfighter
2228 spam mails have been blocked so far.
Download free www.spamfighter.com today!

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


[Index of Archives]     [PHP Home]     [PHP Users]     [Postgresql Discussion]     [Kernel Newbies]     [Postgresql]     [Yosemite News]

  Powered by Linux