I got itright to create the following inner join:
select `NameID`,
`Name`,
`Surname`,
`NmeID`,
`AdID`,
`Ad1`,
`Town`,
`Code`
From `Name`
inner join Ads on (Name.NameID=Ads.AdID)
and it works fine.
How do I setup the Add and Edit page to be able to add/edit info from both tables.
Iget the following error:
The INSERT INTO statement contains the following unknown field name: 'NmeID'. and everytime I remove the field, the next in the Ads table.