Jump to content

Storing IP Address


Tenaciousmug

Recommended Posts

Alright, the register/login system is fully working with sql injection, BUUUT now I want to store their IP Address. WHOLE new function that I've never dealt with before. So I need some help. Am I doing something wrong?

 

I have the IPadd in the database as INT(10) and then I went down to another drop down list and hit unsigned.

I feel like I'm doing something wrong with the field in the database..

 

{
	$_SERVER['REMOTE_ADDR'] = $IPadd;
	$sql = "INSERT INTO Member (username,createDate,password,firstName,email,IPadd) VALUES ('$username',NOW(),md5('$password'),'$firstName','$email',inet_aton('$IPadd'))";
	mysqli_query($cxn,$sql);
	$_SESSION['auth']="yes";
	$_SESSION['username'] = $username;
	header("Location: testing.php");
}

Link to comment
Share on other sites

That's exactly what I'm already doing. It just won't store.. I am coding the PHP fine and I do have the IPadd field as INT UNSIGNED. Well I don't know what I'm doing wrong now.. I looked at every single tutorial for storing ip addresses and they are all the same and I even copied and pasted their code and it still won't work.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.