Jump to content

how to get database to accept


desjardins2010

Recommended Posts

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?

Link to comment
Share on other sites

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.

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.