Postingan lainnya
masalah php untuk yii framework. ParseError syntax error, unexpected '=>' , expecting ']'
SC masalah browser.JPGKak mau tanya masalah php tentang syntax error(unexpected '=>') yang ini. Masih bingung untuk mencari error(utama no 36)
class MahasiswaController extends controller
{
public function actionIndex()
{
$query = Mahasiswa::find();
$pagination = new Pagination([
'defaultPageSize' => 5,
'totalCount' => $query->count(),
]);
$data_mahasiswa = $query->orderBy('id')
->offset($pagination->offset)
->limit($pagination->limit)
->all();
return $this->render('index', [
'data_mahasiswa' => $data_mahasiswa,
'pagination' => $pagination,
]);
}
public function actionCreate()
{
$model = new Mahasiswa();
if($model->load(yii::$app->request->post()) && $model->save()) {
Yii::$app->session->setFlash('success','Data berhasil disimpan');
return $this->refresh();
}
return $this->render('create' [
'model' => $model, /*<= NOMOR 36 */
]);
}
0
1 Jawaban:
<div>cek bagian errornya.<br>Cuma perlu hati hati<br><br>Koma setelah create</div><pre>return $this->render('create', [ 'model' => $model, /*<= NOMOR 36 */ ]); </pre>
0