Created
April 18, 2012 09:56
-
-
Save vivirenremoto/2412517 to your computer and use it in GitHub Desktop.
script concurso betabeers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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