Results 1 to 10 of 42
Hybrid View
-
30th Jun 2012, 11:24 AM #1(1only)Website's:
BarakaDesigns.com Amodity.com IMGFlare.comPHP Code:public function saltGenerator($limitChars=8) {
$symb = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890!@#$%^&*()-=_+[]{}\\|;:'\",./<>?~`";//letters,numbers,& symbols
$saltv = '';
for ($i = 0; $i < $limitChars; $i++)
$saltv .= $symb[rand(0, strlen($symb) - 1)];
return $saltv;
}
PHP Code:$saltv = $saltv ?: $this->saltGenerator();
$phash = md5(md5($saltv) . md5($pass));
$sql->password = $phash;
$sql->salt = $saltv;
Baraka Reviewed by Baraka on . Snippet of the Day Disclaimer: Ok, just an idea I thought up. Might take off, might not. With that out of the way let me introduce snippet of the day. In this thread you may post one snippet of code a day (at most) that you are particularly proud of. Rules: Snippets must be at most 15 lines long. Try to keep them as short as possible. You must have written them yourself and within the course of the day. Any language is allowed No insulting peoples coding. Although that said, if you just started Rating: 5
-
30th Jun 2012, 03:31 PM #2OPRespected DeveloperWebsite's:
X4B.orgAsk and ye shall receive.
PHP Code:function saltGenerator($limitChars=8) {
$saltv = '';
for (; $limitChars; --$limitChars)
$saltv .= chr(rand(33,126));
return $saltv;
}
-
30th Jun 2012, 06:26 PM #3(1only)Website's:
BarakaDesigns.com Amodity.com IMGFlare.com
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Plz Help To Add A Php Snippet Into My DLE Index !
By JoomlaZ in forum Web Development AreaReplies: 0Last Post: 7th Jul 2011, 01:18 PM -
[C#] Tiny Web Server (snippet)
By Hyperz in forum Web Development AreaReplies: 6Last Post: 24th Jun 2010, 01:19 PM -
Image Upload in php. Code snippet #2
By SplitIce in forum Tutorials and GuidesReplies: 5Last Post: 31st Oct 2009, 07:40 AM -
See real OOP (Snippet from Litewarez V2) Webmasters CP
By litewarez in forum Tutorials and GuidesReplies: 21Last Post: 19th Sep 2009, 03:59 PM -
A Snippet from my latest project
By litewarez in forum Tutorials and GuidesReplies: 19Last Post: 21st Jun 2009, 05:17 PM
themaLeecher - leech and manage...
Version 5.07 released. Open older version (or...