Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- $bn = $_POST["bn"];
- $pr = $_POST["pr"];
- if($bn <2 && $bn != null)
- {
- $ip = $_SERVER['REMOTE_ADDR'];
- $checkip = file_get_contents("ip.txt");
- $ipc = strripos($checkip, $ip);
- if($ipc === false)
- {
- $ip = $_SERVER['REMOTE_ADDR'];
- $tulis = fopen("ip.txt", "a+");
- fwrite($tulis, $ip."\n");
- fclose($tulis);
- $totalbn = file_get_contents("totalbn.txt");
- $tulis = fopen("totalbn.txt", "w+");
- fwrite($tulis, $bn+$totalbn);
- fclose($tulis);
- echo "terima kasih kerana menunaikan tanggungjawab anda";
- }
- else
- {
- echo "ko dah undi la... ni mesti bangla ke nak undi bnyk2,ni anak najib eh?";
- }
- }
- elseif($pr <2 && $pr != null)
- {
- $ip = $_SERVER['REMOTE_ADDR'];
- $checkip = file_get_contents("ip.txt");
- $ipc = strripos($checkip, $ip);
- if($ipc === false)
- {
- $ip = $_SERVER['REMOTE_ADDR'];
- $tulis = fopen("ip.txt", "a+");
- fwrite($tulis, $ip."\n");
- fclose($tulis);
- $totalpr = file_get_contents("totalpr.txt");
- $tulis = fopen("totalpr.txt", "w+");
- fwrite($tulis, $pr+$totalpr);
- fclose($tulis);
- echo "terima kasih kerana menunaikan tanggungjawab anda";
- }
- else
- {
- echo "ko dah undi la... ni mesti bangla ke nak undi bnyk2...ni anak anwar eh?";
- }
- }
- else
- {
- echo '<center><font style="font-size:40;">Pilihanraya Online</font><br />';
- echo "Jumlah :[<font color='red'>".file_get_contents("totalpr.txt")."</font>]";
- echo '
- <form action="" method="post">
- <input type="hidden" value="1" name="pr">
- <input type="image" value="Pakatan Rakyat" src="http://3.bp.blogspot.com/-1Y0_Rja0lPo/USMPhLXepkI/AAAAAAAACzk/SBw2B_eyZi4/s400/pkr+dap+pas.jpg" width="30%" style="border:3px red outset;">
- </form>';
- echo "<br />Jumlah :[<font color='red'>".file_get_contents("totalbn.txt")."</font>]";
- echo '<form action="" method="post">
- <input type="hidden" value="1" name="bn">
- <input type="image" value="Barisan Nasional" src="http://www.abc.net.au/news/image/4658472-3x2-940x627.png" width="30%" style="border:3px blue outset;">
- </form></center>';
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment