Poll without IP check

Get help with installation and running phpwcms here. Please do not post bug reports or feature requests here.
Post Reply
design
Posts: 68
Joined: Thu 17. Feb 2005, 17:19

Poll without IP check

Post by design »

Hi! I want to use "Poll" CntPart. But I don't want that the system get remote IP. I prefer cookies!
That's because all the students in a school have the same IP, and so, they cannot vote!
How can I solve?

The PHP file is:
include/inc_front/content/cnt89.article.inc.php

and the code is:

Code: Select all

$poll_html			= "";
$poll_image			= @unserialize($crow["acontent_image"]);
$poll_text			= @unserialize($crow["acontent_text"]);
$poll_form			= @unserialize($crow["acontent_form"]);
$poll_choice_count	= 0;
$remoteIP			= getRemoteIP();

if(!isset($poll_form["ip"])) {
	$poll_form["ip"] = array();
}

$poll_id 	= isset($_POST["hidden_acontent_id"]) ? intval($_POST["hidden_acontent_id"]) : 0;
$poll_count	= max(count($poll_form["choice"]), count($poll_image["images"]));

if($poll_id == $crow['acontent_id'] && isset($_POST["poll"]) && !in_array($remoteIP, $poll_form["ip"])) {
	$poll_choosen 						= intval($_POST["poll"]);
	$poll_form["count"][$poll_choosen] += 1;
	$poll_form["ip"][] = $remoteIP; 
	$poll_choice_count = $poll_form["count"][$poll_choosen];
		
	$sql  = "UPDATE ".DB_PREPEND."phpwcms_articlecontent ";
	$sql .= "SET acontent_form	='".aporeplace(serialize($poll_form))."' ";
	$sql .= "WHERE acontent_id = ".$poll_id." LIMIT 1";
	@mysql_query($sql, $db);
}



$CNT_TMP .= '<div class="';
$CNT_TMP .= empty($poll_text['poll_buttonstyle']) ? 'defaultPollClass' : $poll_text['poll_buttonstyle'];
$CNT_TMP .= "\">\n";
$CNT_TMP .= headline($crow["acontent_title"], $crow["acontent_subtitle"], $template_default["article"]);



if(in_array($remoteIP, $poll_form["ip"])) {
	$poll_total_votes = 0;
	foreach($poll_form["count"] as $key => $value) {
		$poll_total_votes += $value;
	}
	if($poll_total_votes > 0) {
		$poll_html .= '<table cellpadding="0" cellspacing="0" border="0">';
	
		for($key = 0; $key < $poll_count; $key++)
		{
			$poll_html .= "\n<tr>\n\t<td>";
			$poll_do_br = '';
			$poll_form["choice"][$key] = isset($poll_form["choice"][$key]) ? trim($poll_form["choice"][$key]) : '';
			if(!empty($poll_form["choice"][$key])) {
				$poll_html .= html_specialchars($poll_form["choice"][$key]);
				$poll_do_br = '<br />';
			}
			if(is_array($poll_image["images"][$key]) && count($poll_image["images"][$key]))
			{
				$poll_html .= $poll_do_br;
				$poll_html .= showPollImage($poll_image["images"][$key]);
			}
			$barWidth = round(($poll_form["count"][$key] / $poll_total_votes * 100), 0);
			$poll_html .= "</td>\n\t".'<td class="pollBarCell">';
			$poll_html .= '<span class="pollBarBegin"><!-- --></span>';
			$poll_html .= '<span class="pollBarMain" style="width:'.$barWidth.'px;"><!-- --></span>';
			$poll_html .= '<span class="pollBarPercent">'.$barWidth."%</span></td>\n</tr>\n";
		}
		$poll_html .= "</table>";
	}
} elseif((is_array($poll_form["choice"]) && count($poll_form["choice"])) || (is_array($poll_image["images"]) && count($poll_image["images"]))) {

	$form_name  = "form_".randpassword(6);
	$poll_html .= '<form action="'.FE_CURRENT_URL.'" method="post" name="'.$form_name.'" id="'.$form_name.'">';
	$poll_html .= '<table cellpadding="0" cellspacing="0" border="0">';
		
	for($key = 0; $key < $poll_count; $key++) {
	
		$poll_html .= "\n<tr>\n\t".'<td class="pollRadioCell">';
		$poll_html .= '<input type="radio" name="poll" value="'.$key.'" />';
		$poll_html .= "</td>\n\t";
		$poll_html .= '<td class="pollInfo">';
		
		$poll_do_br = '';
		
		$poll_form["choice"][$key] = isset($poll_form["choice"][$key]) ? trim($poll_form["choice"][$key]) : '';
		if(!empty($poll_form["choice"][$key])) {
			$poll_html .= $poll_form["choice"][$key];
			$poll_do_br = '<br />';
		}
		if(is_array($poll_image["images"][$key]) && count($poll_image["images"][$key])) {
			$poll_html .= $poll_do_br;
			$poll_html .= showPollImage($poll_image["images"][$key]);
		}
		$poll_html .= "</td>\n</tr>";
	}
	$poll_html .= "</table>\n";
	$poll_html .= '<input type="submit"';
	$poll_html .= empty($poll_text['poll_buttontext']) ? '' : ' value="'.html_specialchars($poll_text['poll_buttontext']).'"';
	$poll_html .= ' class="pollSubmitButton" />';
	$poll_html .= '<input type="hidden" value="'.$crow['acontent_id'].'" name="hidden_acontent_id" />';
	$poll_html .= "</form>";
}

$CNT_TMP .= $poll_html;
$CNT_TMP .= "\n</div>\n";

unset($poll_image);
unset($poll_text);
unset($poll_form);
Could you help me? Thank you very much!
Post Reply