Skip to content

Instantly share code, notes, and snippets.

@vivirenremoto
Created April 18, 2012 09:56
Show Gist options
  • Save vivirenremoto/2412517 to your computer and use it in GitHub Desktop.
Save vivirenremoto/2412517 to your computer and use it in GitHub Desktop.
script concurso betabeers
<?php
$names = "Ivan Garcia Villar
Alejandro Perezpaya
Asier Arranz Jimenez
Sergio Fernandez
Nestor Palao Pinedo
Jose Maria Martin
Raymond Albaladejo
Jose Antonio Lambiris Ruiz
Daniel Gonzalez
Jaime Bravo
Borja Reinares Ruiz
Manuel Zafra";
$names = explode("\n", $names);
for($i=0;$i<=5;$i++) shuffle($names);
echo $names[0];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment