Results 1 to 2 of 2

Thread: IP address

  1. #1
    Newbie
    Join Date
    Mar 2005
    Posts
    1
    I found this script on the web... I was wondering if anyone knows how to add IP address to this script.

    When I try the comma approach ('44.44.44.44','44.445.55.55') it ends up blocking everything. It also doesn?t work if i do this:
    if (ip == "664.43434.13479.23429");
    if (ip == "664.4664.13479.23429");
    if (ip == "664.44354.13479.23429")

    Anywas that IP is fake just incase you dont know, I have a website in which some forms get spammed, and I know the IP address and want to be able to block them but I cant figure out how to add multiple IP's to this script.


    <script language="javascript">
    var ip = &#39;&#39;
    if (ip == "664.43434.13479.23429") {
    alert("Go away, your IP has been banned");
    {location.href="http://www.dfsdfsdf.com" } }
    </script>

  2. #2
    Newbie
    Join Date
    Aug 2005
    Posts
    1
    Originally posted by adamstang@Mar 26 2005, 01:06 AM
    if (ip == "664.43434.13479.23429");
    if (ip == "664.4664.13479.23429");
    if (ip == "664.44354.13479.23429")
    Instead of using semicolons, try using "or".

    if (ip == "664.43434.13479.23429") or
    if (ip == "664.4664.13479.23429") or
    if (ip == "664.44354.13479.23429")

    That&#39;s what you do in php, so it might work.

Similar Threads

  1. Manage Groups in Address Book in XP
    By CoolJsa14 in forum Windows - General Topics
    Replies: 0
    Last Post: 01-05-2005, 08:23 PM
  2. Manage Groups in the Address Book
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-04-2005, 06:19 AM
  3. Live Communications Server 2005 Glossary
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 08:16 PM
  4. Connect to internet with Win 95 or 98
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 01:13 AM
  5. Calling all mail server admins
    By demian in forum Linux - Hardware, Networking & Security
    Replies: 4
    Last Post: 04-21-2004, 08:21 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •