Searched refs:ip (Results 1 – 7 of 7) sorted by relevance
/web-master/entry/ |
H A D | user-notes-vote.php | 26 $ip = $hostip = $id = $vote = 0; 35 $ip = sprintf("%u", ip2long($_POST['ip'])); 38 $ip = 0; 90 if (!$remoteStmt->execute(['ip' => $ip, 'id' => $id])) { 105 if (!$hostStmt->execute(['ip' => $ip, 'id' => $id])) { 120 …if (!$voteStmt->execute(['id' => $id, 'ip' => $ip, 'host' => $hostip, 'ts' => $ts, 'vote' => $vote…
|
H A D | user-note.php | 28 $ip = filter_input(INPUT_POST, "ip", FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RAN… variable 31 if (empty($user) || empty($note) || empty($sect) || !$ip) 49 if (($spamip=is_spam_ip($_SERVER['REMOTE_ADDR'])) || ($spamip=is_spam_ip($ip)) || ($redirip && $spa… 121 …$msg .= "\nProbable Submitter: {$ip}" . ($redirip ? ' (proxied: '.htmlspecialchars($redirip).')' :…
|
/web-master/scripts/ |
H A D | ip-to-country | 5 // Fetch ip-to-country.com data and index database 9 $ipdbt = "ip-to-country.db~"; 10 $ipdbc = "ip-to-country.dbr~"; 11 $ipdb = "$root/backend/ip-to-country.db"; 12 $ipidx = "$root/backend/ip-to-country.idx"; 18 // Get last modified date of ip-to-country data 107 // Create local index for ip-to-country.com data 130 die("Incorrect ip-to-country database format");
|
H A D | update-backend | 30 // Run ip-to-country fetch code
|
/web-master/include/ |
H A D | spam-lib.inc | 99 function is_spam_ip ($ip) { 100 $reverse_ip = implode('.', array_reverse(explode('.', $ip))); 104 // [0] => dns server, [1] => exclude ip 113 return $ip;
|
/web-master/ |
H A D | note.sql | 35 `ip` bigint(20) unsigned NOT NULL DEFAULT '0', 40 KEY `note_id` (`note_id`,`ip`,`vote`),
|
/web-master/manage/ |
H A D | user-notes.php | 332 $ip = hsc($row['ip']); variable 334 … " <td style=\"padding: 5px;\"><a href=\"?view=votes&type=5&votessearch=$ip\">$ip</a></td>\n". 920 function wildcard_ip($ip) argument 922 $start = explode(".", $ip);
|
Completed in 13 milliseconds