Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)
?> 
share|improve this question
Your second link is broken – Edgar Velasquez Lim Jul 21 '11 at 9:04
@U4ik, please edit the answer and paste the source, the link does not work and will never work because php code cannot be linked to in that way. – Johan Jul 21 '11 at 9:10
I see no evidence that you tried to implement your requirements and need help figuring out why what you did doesn't work. This is not a free coding service. You have not asked a question. Voted to close. – Dan Grossman Jul 21 '11 at 9:15
Fair enough. Then are there any If/Then's I could use? The If and DIE things are great for single fields. I haven't been able to figure out the multiple field checks. – U4iK_HaZe Jul 21 '11 at 9:18
This has got to be the worst SQL-injection flaw ever: ('".mysql_real_escape_string($ip)."','$_POST[username]')"); – Johan Jul 21 '11 at 9:19
show 1 more comment

closed as not a real question by Shef, Johan, Ian Ringrose, Dan Grossman, symcbean Jul 21 '11 at 10:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

If B) the username is new but the IP is the same, echo "WARNING: you may be banned

Most domestic internet service providers do not provide static addresses. A large number of your users will be behind NAT gateways / proxies. Unless you have your own IPv6 POP this will increase significantly. Some users will connect through load balanced proxies.

PS: Please don't criticize the security flaw

Which one? There are several.

You don't say why you are unable to achieve your objective / what the problem is.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.