Sign up to create your own snipts, or login.

Public snipts » gurgelrenan's snipts The latest snipts from gurgelrenan.

showing 1-2 of 2 snipts
  • index - palpiteiro
    <html>
    	<head>
    		<title>Palpiteiro de Mega Sena </title>
    	</head>
    	<body>
    		<h1>Bem Vindo ao Palpiteiro de Mega Sena</h1>
    		<h2>Escolha o número de bolas a serem sorteadas</h2>	
    		<form action = "palpiteiro.php" method = "post">
    			<select name = "escolha" >
    				<option value = "6">6</option>
    				<option value = "7">7</option>	
    				<option value = "8">8</option>
    				<option value = "9">9</option>
    				<option value = "10">10</option>
    			</select>
    			<input type = "submit" value = "sortear">
    		</form>
    	</body>
    </html>
    

    copy | embed

    0 comments - tagged in  posted by gurgelrenan on Sep 28, 2009 at 9:56 a.m. EDT
  • Palpiteiro de Mega Sena
    <?php
    	$numeros = array();
    	$numBolas = $_POST['escolha']; // Quantidade de numeros apostados
    	while(count($numeros) < $numBolas) {
    		do {
    			$random = rand(1,60);
    		} while(in_array($random,$numeros));
    
    		$numeros[] = $random;				
    	}
    	
    	echo "Os números da sorte são: ";
    	sort($numeros);
    	foreach($numeros as $resultado)
        	echo $resultado." ";
    ?>
    <a href	= "index.php">Voltar</a>
    

    copy | embed

    0 comments - tagged in  posted by gurgelrenan on Sep 28, 2009 at 9:46 a.m. EDT
Sign up to create your own snipts, or login.