> > It's almost as if the value of $_POST['OK'] will never die - even if I > change the 'name' of all of the ' > buttons. Not sure what you meant here... but changing the value of this line '' sounds more like what will give you the behavior you expect. Then $_POST['OK'] == "some_other_value" Also, you should be able to parse your inputs based upon the name of the submit button so that you evaluate the form "section" before the actual fields eg. '' at the beginning of your parsing section check for which submit button was pressed: if (isset($_POST['Section_1']) && $_POST['Section_1'] == "submit") { //Get the rest of the form data for this section } HTH > > So I am really left to think that the above 'var_export' commands simply > don't give me a complete dump of all of the data that is POST'ed - is > there any way to get a complete dump of this data? > > Craig > > --------------------------------------------------- > PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us > To subscribe, unsubscribe, or to change you mail settings: > http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss > --------------------------------------------------- PLUG-discuss mailing list - PLUG-discuss@lists.plug.phoenix.az.us To subscribe, unsubscribe, or to change you mail settings: http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss