- or download this
CREATE TABLE name2ip (
name text -- don't make this a primary key!
ip text -- or inet, or whatever mySQL has
);
- or download this
SELECT ip FROM name2ip WHERE name = somename;
- or download this
SELECT name FROM name2ip WHERE ip = someip; -- or, LIKE blah or wha
+tever