critical features such as browsing table data,
editing and deleting rows, primary and unique key administration and a
reports utility to keep your most commonly used queries handy.
-Dan Wilson
and the phpPgAdmin Development Team
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail
For full story, please visit
http://sourceforge.net/forum/forum.php?forum_id=117841
It looks like a previous post didn't go through, so if this is a duplicate,
please forgive me.
-Dan
[EMAIL PROTECTED]
http://sourceforge.net/projects/phppgadmin
--
PHP General Mailing List (http://www.php.net
Hey all,
I'm trying to mangle email addresses to pass to an email sending form and
want to use a custom hashing function within an eregi_replace.
Example:
$text = eregi_replace("[my big email regex]", "send.php?addr=" .
hash_func("\\1@\\2.\\3"), $text);
I can't seem to get this to work... it i
I'm trying to parse the different "parts" of an email address both for
validation and munging.
I have the following regex:
([a-z0-9_\.\-]+)@([a-z0-9\.-]+).([a-z]{3})
This works great, except it doesn't accept the country code domains (.au,
etc). So I changed the number of characters to {2,3} at
: [EMAIL PROTECTED] says...
: }I'm trying to parse the different "parts" of an email address both for
: }validation and munging.
: }
: }I have the following regex:
: }([a-z0-9_\.\-]+)@([a-z0-9\.-]+).([a-z]{3})
: }
: }This works great, except it doesn't accept the country code domains (.au,
: }etc)
: > : Here's a quick patch.. =3D)
: > : ([a-z0-9_\.\-]+)@([a-z0-9\.-]+).([a-z]{2}[a-z]?)
: > Does anyone else (a regex guru) have any other suggestions?
: I'm by no means an reg-exp-expert (hate these things)
: /[a-z0-9_.-]+@+[a-z0-9._-]+\.[a-z]{2,4}/i
: should do.
: -fkr
And the winner is
6 matches
Mail list logo