检查给定的Web地址是否阻止访问者ip

时间:2015-12-07 21:15:26

标签: javascript php html ip block

我想制作一个用户输入网址并点击提交按钮的网络应用程序。现在我的应用程序检查给定的Web地址是否阻止了他/她的IP地址。你可以帮我制作这个网络应用程序吗?我想使用php和javascript。

基本PHP代码和HTML结构:

<?php
if ( isset( $_POST['check_status'] ) ) {

    $_POST = array_map( 'stripslashes', $_POST );
    extract( $_POST );

    if ( empty( $web_addr ) ) {
        $error = "Web address is required.";
    }

    if ( !isset( $error ) ) {
        function checkIpBlocked() {
            /* I need this code to check */
        }   
    }
}
?>

<h2>Check your ip address is blocked or not</h2>
<form action="" method="POST">
    <label for="web_addr">Enter Web Address</label>
    <input type="text" name="web_addr" placeholder="Enter Web Address">
    <input type="hidden" name="user_ip" value="<?php $_SERVER['REMOTE_ADDR']; ?>">
    <input type="submit" name="check_status" value="Check Status">
    <div id="status"><?php if ( isset( $error ) ) { echo $error } ?></div>
</form>

1 个答案:

答案 0 :(得分:0)

除非相关网站为您提供API,否则确实没有可靠的方法。