Skip to content

Instantly share code, notes, and snippets.

@gnuget
Created September 28, 2009 04:44
Show Gist options
  • Save gnuget/195167 to your computer and use it in GitHub Desktop.
Save gnuget/195167 to your computer and use it in GitHub Desktop.
<?php
//old way (and with this doesn't work the drag and drop order feature)
$my_group = getGroupDuplicates("some_field");
for($i=1;$i <= $my_group;$i++){
echo get('some_Field',$i);
}
//new way
$the_order = getGroupOrder('some_field');
foreach($the_order in $value){
echo get('sime_field',$value);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment