/**
 * Creates a new model.
 * If creation is successful, the browser will be redirected to the 'view' page.
 */
 public function actionCreate($id)
 {
     $model = new DataAkademikAnak();
     $model->id_anak = $id;
     // Uncomment the following line if AJAX validation is needed
     // $this->performAjaxValidation($model);
     if (isset($_POST['DataAkademikAnak'])) {
         $model->attributes = $_POST['DataAkademikAnak'];
         if ($model->save()) {
             $this->redirect(array('DataOrangtuaAnak/Create', 'id' => $model->id_anak));
         }
     }
     $this->render('create', array('model' => $model));
 }