Created
November 30, 2013 22:36
-
-
Save wesrice/7725501 to your computer and use it in GitHub Desktop.
Kyle Problem
This file contains 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 | |
$types = explode( ",", $_GET['types'] ); | |
foreach( $workoutmoves AS $workoutmove ): | |
?> | |
<li> | |
<input class="check_box" type="checkbox" <?php in_array( $workoutmove->slug, $types ) ? 'checked' : ''; ?> value="<?php echo $workoutmove->slug; ?>"> <?php echo $workoutmove->name; ?> | |
</li> | |
<?php endforeach; ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment