Код в delete.php такой:
<?php $query ="DELETE FROM goods WHERE id = 'id'"; ?>
<h2>Удалить модель?</h2>
<form method='POST'>
<input type='hidden' name='id' value='$id' />
<input type='submit' value='Удалить'>
</form>";
А в контроллере такой:
public function actionDelete($id)
{
$goods = Goods::find()->one();
return $this->render('delete', compact('goods'));
}
В итоге выводит вот :
Bad Request (#400)
Unable to verify your data submission.
The above error occurred while the Web server was processing your request.
Please contact us if you think this is a server error. Thank you.
В чем моя ошибка?