I have looked around on the web for a solution, but it doesn't apply in my case. I've got a registration form here: http://sun.u4ik.us:25555/minecraft/register/index.html and the script of PHP is here: http://sun.u4ik.us:25555/minecraft/register/insert.php
I would like it to check if A) the entry is blank (if so, forward to www.page.com/doc.html OR echo "You cannot leave it blank... Server can't just GUESS who you are!") If B) the username is new but the IP is the same, echo "WARNING: you may be banned for using multiple accounts. Get approval here: support@u4ik.us"
Finally, if C) username AND IP match, echo "Username already exists/is pending registration."
Thanks for the assistance. It really helps.
PS: Please don't criticize the security flaw. I'm not concerned with this database since account that controls it has no other privelages.
script:
<?php
$con = mysql_connect("localhost","mc","password");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("minecraft", $con);
$ip = $_SERVER['REMOTE_ADDR'];
mysql_query("INSERT INTO register (ip,username)
VALUES ('".mysql_real_escape_string($ip)."','$_POST[username]')");
echo "Your username has been added to the list. ";
echo "Please log into minecraft once at 'mc.u4ik.us' if you haven't already, otherwise your request will be ignored. ";
echo "<a href=\"http://www.u4ik.us\">Return to Homepage</a>";
echo " Please wait for admin approval. Thanks.";
mysql_close($con)
?>
('".mysql_real_escape_string($ip)."','$_POST[username]')");– Johan Jul 21 '11 at 9:19