Skip to content

Instantly share code, notes, and snippets.

@aqlx86
Created August 29, 2013 17:50
Show Gist options
  • Save aqlx86/6381200 to your computer and use it in GitHub Desktop.
Save aqlx86/6381200 to your computer and use it in GitHub Desktop.
days option
<?php
$timestamp = strtotime('next Sunday');
?>
<?php for ($i = 0; $i < 7; $i++) : ?>
<?php $timestamp = strtotime('+1 day', $timestamp); ?>
<option value="<?php echo strftime('%A', $timestamp); ?>"><?php echo strftime('%A', $timestamp); ?></option>
<?php endfor; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment