Skip to content

Instantly share code, notes, and snippets.

@papr
Created February 21, 2011 07:34
Show Gist options
  • Save papr/836780 to your computer and use it in GitHub Desktop.
Save papr/836780 to your computer and use it in GitHub Desktop.
<ul id="parties">
<?php
foreach($parties as $partei) {
$html = '<li title="'.$partei['label'].'">'.$partei['label'].' <input type="checkbox" /></li>';
echo(utf8_encode($html));
}
?>
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment