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
https://forums.phpfreaks.com/topic/209287-storing-ip-address/
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
https://forums.phpfreaks.com/topic/209287-storing-ip-address/#findComment-1092853
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.