Skip to content

Instantly share code, notes, and snippets.

@ewillhite
Created November 13, 2013 21:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ewillhite/7457150 to your computer and use it in GitHub Desktop.
Save ewillhite/7457150 to your computer and use it in GitHub Desktop.
Loop
<?php
function states_submit($form, &$form_state) {
for($i = 0; $i < 100; $i++) {
if(isset($form_state['values']['states_' . $i])) {
variable_set('state_' . $i, $form_state['values']['states_' . $i]);
}
else {
break;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment