I am creating a management engine that needs to manage sections and then pages within the sections.
For usability it has been decided that the display order fields will
I have gone ahead and accepted the answer that assisted me in resolving the issue, however in the off chance that others read and want to better understand the final outcome, this is the code that was used:
Button Code:
Determining the button used (Debug Testing Only!):
if($_POST['reorder'] == "sections"){ echo 'DEBUGGER ACTIVATED: SUBMITTED SECTIONS FOR RE-ORDER'; }
if(substr($_POST['reorder'], 0, 6) == "pages:"){ echo 'DEBUGGER ACTIVATED: SUBMITTED PAGES FOR RE-ORDER FOR SECTION #'.substr($_POST['reorder'], 6); }