Skip to content

Instantly share code, notes, and snippets.

@AV4TAr
Created November 3, 2012 20:26
Show Gist options
  • Select an option

  • Save AV4TAr/4008612 to your computer and use it in GitHub Desktop.

Select an option

Save AV4TAr/4008612 to your computer and use it in GitHub Desktop.
sorteo
<?php
$participantes = file('asistentes.csv');
$total = count($participantes);
for($i=1; $i<=10; $i++ ){
$posicion = rand(0, $total - 1 );
echo $i.' - '.$participantes[$posicion];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment