From a4976f966f0de5abc11235e8decb760ad79ecad1 Mon Sep 17 00:00:00 2001 From: Starla Insigna Date: Sun, 30 Jan 2011 14:10:39 -0500 Subject: Removed deleted files from previous commit Wow, that took a long time to notice. --- admin/editPoll.php | 118 ----------------------------------------------------- 1 file changed, 118 deletions(-) delete mode 100755 admin/editPoll.php (limited to 'admin/editPoll.php') diff --git a/admin/editPoll.php b/admin/editPoll.php deleted file mode 100755 index 425f33c..0000000 --- a/admin/editPoll.php +++ /dev/null @@ -1,118 +0,0 @@ -add('TITLE', 'Edit Poll'); -$template->add('ACTION', '/admin/editPoll.php?id=' . $_GET['id'] . '&submit='); - -if (isset($_GET['submit'])) -{ - if (empty($_POST['question'])) - { - $errors[] = array( 'field' => 'question', - 'text' => 'Question is a required field'); - } - - if (empty($_POST['option1'])) - { - $errors[] = array( 'field' => 'option1', - 'text' => 'Option 1 is a required field'); - } - - if (empty($_POST['option2'])) - { - $errors[] = array( 'field' => 'option2', - 'text' => 'Option 2 is a required field'); - } - - if (empty($_POST['option3'])) - { - $errors[] = array( 'field' => 'option3', - 'text' => 'Option 3 is a required field'); - } - - if (empty($_POST['option4'])) - { - $errors[] = array( 'field' => 'option4', - 'text' => 'Option 4 is a required field'); - } - - if (isset($errors)) - { - $template->adds_block('ISERROR',array('exi'=>1)); - - $eid = 0; - foreach ($errors as $error) - { - $template->adds_block('ERROR', array( 'ID' => $eid, - 'TEXT' => $error['text'])); - $template->add('IS' . strtoupper($error['field']) . 'ERROR', ' error'); - $template->adds_block(strtoupper($error['field']) . 'ERROR', array( 'ID' => $eid, - 'TEXT' => $error['text'])); - - $eid++; - } - - $getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id']; - $getpoll2 = mysql_query($getpoll); - $getpoll3 = mysql_fetch_array($getpoll2); - - $template->add('QUESTIONVALUE', htmlentities($_POST['question'])); - $template->add('OPTION1VALUE', htmlentities($_POST['option1'])); - $template->add('OPTION2VALUE', htmlentities($_POST['option2'])); - $template->add('OPTION3VALUE', htmlentities($_POST['option3'])); - $template->add('OPTION4VALUE', htmlentities($_POST['option4'])); - $template->add('TEXTVALUE', $_POST['text']); - } else { - $inspoll = "UPDATE polloftheweek SET question = \"" . mysql_real_escape_string($_POST['question']) . "\", option1 = \"" . mysql_real_escape_string($_POST['option1']) . "\", option2 = \"" . mysql_real_escape_string($_POST['option2']) . "\", option3 = \"" . mysql_real_escape_string($_POST['option3']) . "\", option4 = \"" . mysql_real_escape_string($_POST['option4']) . "\", text = \"" . mysql_real_escape_string($_POST['text']) . "\" WHERE id = " . $_GET['id']; - $inspoll2 = mysql_query($inspoll); - - $template->add('QUESTIONVALUE', htmlentities($_POST['question'])); - $template->add('OPTION1VALUE', htmlentities($_POST['option1'])); - $template->add('OPTION2VALUE', htmlentities($_POST['option2'])); - $template->add('OPTION3VALUE', htmlentities($_POST['option3'])); - $template->add('OPTION4VALUE', htmlentities($_POST['option4'])); - $template->add('TEXTVALUE', $_POST['text']); - - $template->adds_block('FLASH', array('TEXT' => 'Your poll has been sucessfully edited. View poll.')); - } -} else { - $getpoll = "SELECT * FROM polloftheweek WHERE id = " . $_GET['id']; - $getpoll2 = mysql_query($getpoll); - $getpoll3 = mysql_fetch_array($getpoll2); - - $template->add('QUESTIONVALUE', htmlentities($getpoll3['question'])); - $template->add('OPTION1VALUE', htmlentities($getpoll3['option1'])); - $template->add('OPTION2VALUE', htmlentities($getpoll3['option2'])); - $template->add('OPTION3VALUE', htmlentities($getpoll3['option3'])); - $template->add('OPTION4VALUE', htmlentities($getpoll3['option4'])); - $template->add('TEXTVALUE', $getpoll3['text']); -} - -$template->display(); - -?> -- cgit 1.4.1