Portions created by the Initial Developer are Copyright (C) 2008-2018 the Initial Developer. All Rights Reserved. Contributor(s): Mark J Crane */ function persistformvar($form_array) { // Remember Form Input Values if (is_array($form_array)) { $content .= "
\n"; foreach($form_array as $key => $val) { if ($key == "XID" || $key == "ACT" || $key == "RET") continue; if ($key != "persistform") { //clears the persistform value $content .= " \n"; } } $content .= " \n"; //sets persistform to yes $content .= " \n"; $content .= "
\n"; } echo $content; //return $content; } //persistformvar($_POST); //persistformvar($_GET); ?>