Thanks for this application more simple than others tested.
I have a problem with an SQL query in relationships.ini : one to many relations between a table source "donateurs" (id is the primary key) and "tra nsac10" the destination table
1st problem
first I tried :
- Code: Select all
[Dons en 2010]
__sql__ = "SELECT * FROM `transac10` WHERE id = '$id'"
It works well : all the fields of "transac10" appears in the tab
When I use :
- Code: Select all
[Dons en 2010]
__sql__ = "SELECT `MontantDon10` , `DateDon10` , `InfoDon10` FROM `transac10` WHERE id = '$id'"
I want only the 3 fields of the table "transac10" BUT all the fields appear in the tab like in the former query
2nd Problem
When i used the "add a new record in transac10" the edit tab is opened but the result is never saved in the base (controlled with PhpMyAdmin)
Where is the misfit ?
Ragards
Guy