Skip to content

Instantly share code, notes, and snippets.

@chadsten
Created March 28, 2017 21:47
Show Gist options
  • Save chadsten/d2d109c34c4a6e001d4ffc88d608a54b to your computer and use it in GitHub Desktop.
Save chadsten/d2d109c34c4a6e001d4ffc88d608a54b to your computer and use it in GitHub Desktop.
$children[]['tid']
$children[]['ptid']
foreach ($parents as $parent) {
echo $parent;
foreach ($children as $child) {
if ($child['ptid'] == $parent['tid']) {
echo $child;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment