yii set primary key เองครับ
Submitted by lojorider on Sun, 09/04/2011 - 17:06
public function actionCreate()
{
$model=new Room;
if(isset($_POST['Room']))
{
$model->attributes=$_POST['Room'];
if($model->save())
$this->redirect(array('view','id'=>$model->R_ID));
}
$this->render('create',array(
'model'=>$model,
));
}
=================== เปลี่ยนเป็น =========================
public function actionCreate()
{
$model=new Room;
if(isset($_POST['Room']))
{
$model->primaryKey = 999; // ส่วนที่เพิ่มเข้ามาครับ;
$model->attributes=$_POST['Room'];
if($model->save())
$this->redirect(array('view','id'=>$model->R_ID));
}
$this->render('create',array(
'model'=>$model,
));
}
tags:
