radio button value not coming from database

Radio butoon value not coming from database.

This is my VIEW side

<div class="row">

	&lt;?php echo &#036;form-&gt;labelEx(&#036;model,'eGender'); ?&gt;


	&lt;?php echo &#036;form-&gt;radioButton(&#036;model,'eGender',array('Male'=&gt;'Male','uncheckValue'=&gt;true)).'Male'; ?&gt;


	&lt;?php echo &#036;form-&gt;radioButton(&#036;model,'eGender',array('Female'=&gt;'Female','uncheckValue'=&gt;true)).'Female'; ?&gt;


	&lt;?php echo &#036;form-&gt;error(&#036;model,'eGender'); ?&gt;


&lt;/div&gt;

This is my controller -->

$model=$this->loadModel($id);

if(isset($_POST[‘Name’]))

{

$model->attributes=$_POST[‘Name’];

if($model->save())

$this->redirect(array(‘view’,‘id’=>$model->iId));

}

$this->render(‘update’,array(

‘model’=>$model,

));