 HapyMan
                
                                Full Stack Developer
                Kullanıcı
                    HapyMan
                
                                Full Stack Developer
                Kullanıcı
                
             
            
                - 
                    Üyelik
                    14.05.2016
                
- 
                    Yaş/Cinsiyet
                    33 / E
                
- 
                    Meslek
                    What do you do exactly ?
                
- 
                    Konum
                    İstanbul Avrupa
                
                - 
                    Ad Soyad
                    T** T**
                
- 
                    Mesajlar
                    561
                
- 
                    Beğeniler
                    171 / 208
                
- 
                    Ticaret
                    0, (%0)
                
 
                
#random char generator !
function mbs_rand( $charLength="20" ){
	$key = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
	$chLn = strlen($key);
	$randKey='';
	for ($i = 0; $i < $charLength; $i++) {
		$randKey = $randKey."".$key[rand(0, $chLn - 1)];
	};
	return $randKey;
}
#kullanımı 
echo mbs_rand(5)