guess I dont understand what I am doing. I have three tables
Name nameid name
Phone phoneid phone
Phonelist phonelistid nameid phoneid
I got that far. Can you show me the code that would insert into these tables? I just don't understand how to code it.
thanks
It depends on what you want to insert and what the field types are...
But it's just
INSERT INTO table(field1, field2) VALUES(value1, value2)
value1 and value2 should be in quotes if it's not a number.
Diego