Jump to content

Recommended Posts

Ip addresses are not numbers. They are made up of numeric digits and periods to separate the different parts.

 

You either need to store them using a character/text type or convert them to a number (see the mysql INET_ATON() and INET_NTOA() functions.)

I'm reading the inet_aton functions now... so setting up the database though I have a field called IPadress so I enter anything in there? to compare too? not sure how to accomplish this I see the fucntion calls for a mathamatical equation that will convert the IP to a numaric number but how do I get the inital entry?

Assume you have the following table:

 

create table ip_table (
    ip_col int unsigned
);

 

When you're inserting the IP originally you'd have a query like:

 

insert into ip_table (ip_col)
values (
    inet_aton('127.0.0.1')
);

 

Then to retrieve a specific IP, in it's normal format:

 

select inet_ntoa(ip_col)
from ip_table
where inet_ntoa(ip_col) = '127.0.0.1';

 

Obviously '127.0.0.1' would be replaced by a PHP variable.

hmmm that makes sence... but to add the IP to database when they register lets say they are going to be given a few initial values level, ip, cash extt i can't just say insert into blah blah blah 192.169.1.1 I have to enter it as an inet_iton???

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.