সোমবার, ২৩ জুলাই, ২০১২

function Generator($lenth)
    {
        $number=array("A","B","C","D","E","F","G","H","I","J","K","L","N","M","O","P","Q","R","S","U","V","T","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","1","2","3","4","5","6","7","8","9","0");
       
        for($i=0; $i<$lenth; $i++)
        {
            $rand_value=rand(0,61);
            $rand_number=$number["$rand_value"];
       
            if(empty($con))
            {
            $con=$rand_number;
            }
            else
            {
            $con="$con"."$rand_number";}
            }
        return $con;
    }
   
    function Number($lenth)
    {
        $number=array("1","2","3","4","5","6","7","8","9","0");
       
        for($i=0; $i<$lenth; $i++)
        {
            $rand_value=rand(0,9);
            $rand_number=$number["$rand_value"];
       
            if(empty($con))
            {
            $con=$rand_number;
            }
            else
            {
            $con="$con"."$rand_number";}
            }
        return $con;
    }