<div align="center">
<h1>sIPb-Test without redirection</h1><br>
<?php
include_once("sIPb.php");
$ip = new sIPb;
echo "<h2>Your IP is ";
if ($ip->isBlocked()) {
echo "blocked<br>Wait some seconds and reload this page <br>";
}
else {
echo "not blocked";
}
echo "</h2>";
?>
<form >
<input type="button" value = "Back" onclick="history.back()">
</form>
</div>
|