Ok So First thing is to Open up register/index.php
Find this
PHP Code:
<script type="text/javascript" src="http://ajax.microsoft.com/ajax/jquery.validate/1.7/jquery.validate.pack.js"></script>
</head>
After it add this
PHP Code:
<?php $sql = mysql_query("SELECT * FROM users WHERE ip_last='$_SERVER[REMOTE_ADDR]'");
if(mysql_num_rows($sql) > 0) {
echo '<script type="text/javascript">
<!--
alert ("You can only create 1 account per IP!")
// -->
</script>';
echo'<script type="text/javascript">
window.location = "/index.php"
</script>';
die;
}
?>
Credit's
idk who
Like This If this Helped you :D