I´m using access and php to create a database of products and their respective pictures
since a product may have more than one picture, i had to create to tables.
When execute this:
odbc_exec("INSERT INTO PRODUCTS, PICTURES (PRODUCTS.NAME, PICTURES.FILE) VALUES ('POTATO', POTATO.JPG)");
Can you tell why and how to do this using a single query to the database?