Skip to content

Instantly share code, notes, and snippets.

@AV4TAr
Created May 14, 2012 18:30
Show Gist options
  • Save AV4TAr/2695534 to your computer and use it in GitHub Desktop.
Save AV4TAr/2695534 to your computer and use it in GitHub Desktop.
<?php
$seleccion = 25;
$i = 1;
$cantidad_de_dias = 31;
echo "<select>";
while($i<=$cantidad_de_dias){
if($i == $seleccion){
echo '<option value='.$i.' selected="selected">'.$i.'</option>';
} else {
echo '<option value='.$i.'>'.$i.'</option>';
}
$i++;
}
echo "</select>";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment