Help - Search - Members - Calendar
Full Version: Php Site Examples
Zymic Webmaster Forums > Web Design & Development > Server Side Scripting > PHP
jusanthermemory
Are there any full dynamic php sites on the internet for download to use for examples to learn? I've gone through a book now and phpvideotutorials database videos and I'm trying to get some other sources. I think it would be a great learning experience, mostly for the purpose of how to organize and set up sites, to be able to browse some pre-made websites.

EDIT: just for clarification - I'm not talking about extremely good or complex sites. That would probably confuse me more than help me. I'm just talking about a basic site with login and maybe a few other features.

Off-topic: login wise.. I've been looking up login scripts lately and I'm finding that nearly all of the ones I find use md5 encryption even though it's now crackable. Yes, a lot of them used salts to improve security; but I would like to use a more secure login script. Does anybody know of an example of a login script using sha-256?
ap_
i start with wamp server with plain scripts fist then some manual tecniques http://www.php.net/download-docs.php
Eldorik
You might like to split the string you want to encrypt, hash the letters seperatly, add them all together and run the md5 function on that

CODE
<?php

function md5_encrypt($string)
{

$md5_string = md5($string);

// split the string
$split_string = chunk_split($md5_string, 1, ',');
$string_array = explode(',', $split_string);

foreach($string_array as $letter)
{
$long_hash .= md5($letter);
}

return md5($long_hash);

}

?>



this makes a seperate hash for each letter in the password, then makes the final result from hashing the whole thing.
Try that
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2010 Invision Power Services, Inc.