I'm new to PHP and Zend Framework 2, I'm going through a project written in C # ASP.NET for PHP using Zend and I came across the following problem.
I have 2 tables: user and public place.
In the user table I have: id, name, email, password.
In the field table I have: id, userid, address, number.
How do I insert / give update in both tables correctly?
How should the User and Backdoor model be created? Together, separated? The table mapping (UserTable, LogRetourTable) together, separated?
What would the Forms look like? Folder organization?