X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;ds=sidebyside;f=defrequest.pl;fp=defrequest.pl;h=b1d457789cf12275e2080bbbc0dec5618a672cb5;hb=fd11deae5a5d1ca5ba3fa94ef5aeab3ff0f31c99;hp=0000000000000000000000000000000000000000;hpb=c09ad789e3b01520e8eb41cc19631099879787d2;p=ndwebbie.git diff --git a/defrequest.pl b/defrequest.pl new file mode 100644 index 0000000..b1d4577 --- /dev/null +++ b/defrequest.pl @@ -0,0 +1,42 @@ +#************************************************************************** +# Copyright (C) 2006 by Michael Andreen * +# * +# This program is free software; you can redistribute it and/or modify * +# it under the terms of the GNU General Public License as published by * +# the Free Software Foundation; either version 2 of the License, or * +# (at your option) any later version. * +# * +# This program is distributed in the hope that it will be useful, * +# but WITHOUT ANY WARRANTY; without even the implied warranty of * +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * +# GNU General Public License for more details. * +# * +# You should have received a copy of the GNU General Public License * +# along with this program; if not, write to the * +# Free Software Foundation, Inc., * +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * +#**************************************************************************/ + +use strict; + +$ND::TEMPLATE->param(TITLE => 'Request Defense'); + +our $BODY; +our $DBH; +our $LOG; + + + +die "You don't have access" unless isMember(); + +if (param('cmd') eq 'submit'){ + my $insert = $DBH->prepare('INSERT INTO defense_requests (uid,message) VALUES (?,?)'); + if($insert->execute($ND::UID,param('message'))){ + $BODY->param(Reply => param('message')); + }else{ + print "".$DBH->errstr.""; + } +} + + +1;