Answer the question
In order to leave comments, you need to log in
Yii2 Write such an insert query?
Hello.
Please show how to get the data in the controller to write them to the database.
Here is the request:
INSERT INTO review(review_date, review_name, product_id, review) VALUES('review_date', 'review_name', 'product_id', 'review')
Answer the question
In order to leave comments, you need to log in
Yii::$app->db->createCommand()->insert('review', [
'review_date' =>$reviewDate ,
'review_name' => $reviewName,
'product_id' => $productId,
'review' => $review,
])->execute();
$review = new Review([
'review_date' =>$reviewDate ,
'review_name' => $reviewName,
'product_id' => $productId,
'review' => $review,
]);
$review->save();
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question