Mmm..this is weird!
Using this;
$word = "dfsmething@sfdfgdfgfsf.com.ufk";
$code = crypt("MM", $word);
echo $code;
?>
Returns;
dfaVtLshRfT5E
And changing;
$word = "dfsmething@sfdfgdfgfsf.com.ufk";
to
$word = "dfsmething@sfdfgdfgfsf.com.uk";
(not the ufk is changed to uk) gives me;
dfaVtLshRfT5E
Why?
Shouldn't they be different, as they are different words? Does the crypt() function only generate up to 13 char encrypted words?
Thanks
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates
Using this;
Code:
<?php $word = "dfsmething@sfdfgdfgfsf.com.ufk";
$code = crypt("MM", $word);
echo $code;
?>
Returns;
dfaVtLshRfT5E
And changing;
$word = "dfsmething@sfdfgdfgfsf.com.ufk";
to
$word = "dfsmething@sfdfgdfgfsf.com.uk";
(not the ufk is changed to uk) gives me;
dfaVtLshRfT5E
Why?
Shouldn't they be different, as they are different words? Does the crypt() function only generate up to 13 char encrypted words?
Thanks
Andy (mod)
andy@ultranerds.co.uk
IMPORTANT: I've now moved to ultranerds.co.uk, and the .com will no longer work!
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package (plugins total "value" $3,325 & rising, for just $350)| GLinks ULTRA Package PRO (plugins total "value" $5,625 & rising, for just $500)
Support Forum | Links SQL Plugins | DMOZ Dumps | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Compare our different Plugin packages *new* Free CSS Templates

