IP Logger for Voting Script
Posted on
16th Feb 2014 07:03 pm by
admin
Can anybody help me place an IP logger into my voting script?
I know that maybe it is not as secure, but I would prefer them to be logged into a text file for simplicity's sake.
THANKS!
Did you know?Explore Trending and Topic pages for more stories like this.
The php script is this at the moment:
<?php
$vote = $_REQUEST['vote'];
//get content of textfile
$filename = "poll_result.txt";
$content = file($filename);
//put content in array
$array = explode("||", $content[0]);
$a = $array[0];
$b = $array[1];
$c = $array[2];
$d = $array[3];
if ($vote == 1)
{
$a = $a + 1;
}
if ($vote == 2)
{
$b = $b + 1;
}
if ($vote == 3)
{
$c = $c + 1;
}
if ($vote == 4)
{
$d = $d + 1;
}
//insert votes to txt file
$insertvote = $a."||".$b."||".$c."||".$d;
$fp = fopen($filename, "w");
fputs($fp,$insertvote);
fclose($fp);
?>
<font face="helvetica" color="gray"><i>
<?php echo($a); ?><br /><br />
<?php echo($b); ?><br /><br />
<?php echo($c); ?><br /><br />
<?php echo($d); ?></i></font>
No comments posted yet
Your Answer:
Login to answer
346
22
Other forums
Problem with umlauts and UTF-8
Hello every1,
I'm creating my own little CMS at the moment and got some problems with the cha
Convert .fdf to .pdf
I currently have a web form that uploads the form data to an .fdf file and emails it.
However
tag inside php... hi
Code: <?php echo "<td width="$columnWidth%" align=&shift numbers with paging Hi
How would i be able to display 10 numbers 1 2 3 4 5 6 7 8 9 10 and when I click next include problem I have my root folder as: Code: $root = $_SERVER["SITE_HTMLROOT"]; // the server root< Array becomes unset by itself? Hi,
I have a bit of experience with PHP but not extensive. It seems I cannot store any items Posting to another Site? I have software that people install. When they install it, is there a way to make it post their d gmdate() - want 1 hr before time Hi, I am using php gmdate(). Now I am entering all dates in my dbase using gmdate("Y-m-d Image resize Hi again fellers
I managed to sort out the issues with the folder,
Final hurdle is th restricting another login once you logout Hello,
how can I restrict a page from login authenticating against info in a MySQL DB for a s
|