One form and multiple models
问题 I am using Yii Framework. Purpose: Get user input and insert data into Order and OrderDetail tables on one form. The problem is data is inserted only into the Order table. I have tried to follow the wiki tutorial, but I can't fix this problem. Why can't I insert data into both tables, Order and OrderDetail ? I have five models: Customers(customer_id, customer_name, phone, email, lat, lng, ...) Products(product_id, product_name,price, ...) Order(order_id,customer_id, order_status, staff_id, ..