Bleh, i found the problem - i'm using the wrong ***code(); stuff. this is what I have that works now
PHP Code:
function modifyform() {
doformheader("tacemon","modifying");
maketableheader("Modifying TAC?mon:");
makeinputcode("Old Name:","old_name",$old_name);
makeinputcode("New Name:","new_name",$new_name);
makeinputcode("New Variable:","new_var",$new_var);
makeinputcode("New Data:","new_data",$new_data);
doformfooter("Submit Modifications");
}
however, am i correct in assuming that it sends using POST? if so, is there a way to grab POST vars like get?
e.g.
PHP Code:
$mooomoo = $HTTP_POST_VARS[bvlah];
if not, is there a way to make it send in GET?
EDIT: perhaps it's not sending at all... how to fix?