<?php

error_reporting(-1);
$rand = '';
for ( $i=0; $i < 6; $i++ ) {
    $rand .= mt_rand(0, 9);
}
/*echo $rand.'<br />';*/

$lastNumber = $rand % 10;

/*echo $lastNumber.'<br />';*/
$destiny = 'U r.. ';
echo "U've just roll for ur destiny<hr/>";
switch ($lastNumber) {
    case (0) :
        $destiny .=' - warrior jewdi';break;
    case (1) :
        $destiny .=' - marauder sith';break;
    case (2) :
        $destiny .=' - concular jewdi';break;
    case (3) :
        $destiny .=' - forth whore sith';break;
    case (4) :
        $destiny .=' - stormtroper';break;
    case (5) :
        $destiny .=' - wookie';break;
    case (6) :
        $destiny .=' - mandolorian';break;
    case (7) :
        $destiny .=' - bounty hunter';break;
    case (8) :
        $destiny .=' - rebel soldier';break;
    case (9) :
        $destiny .=' - clown trooper';break;
        default :
            $destiny .=' - NODOBY, boy.  By teh Forth will something went wrong!';
}
echo $destiny;