accessing chtml values in function

I need to access chtml values in my function and am unable to do so. I tried using $this->name of the dropdown… but it doesn’t seem to help…

Please help

Can you post your code?

<div class="row">

	&lt;?php echo CHtml::activeLabelEx(&#036;model,'month'); ?&gt;

<?php echo CHtml::activeTextField($model,‘month’,array(“id”=>“month”)); ?>

<?php echo CHtml::image(Yii::app()->request->baseUrl."/images/calendar.png","calendar",

array("id"=>"c_button","class"=>"pointer")); ?>

&amp;nbsp;(calendar appears when image is clicked)


&lt;?php &#036;this-&gt;widget('application.extensions.calendar.SCalendar',


    array(


    'inputField'=&gt;'month',


    'button'=&gt;'c_button',


    'ifFormat'=&gt;'%Y-%m-%d',


));


?&gt;


&lt;/div&gt;

<div class="row">

	&lt;?php echo CHtml::activeLabelEx(&#036;model,'months'); ?&gt;

<?php echo CHtml::activeTextField($model,‘months’,array(“id”=>“months”)); ?>

<?php echo CHtml::image(Yii::app()->request->baseUrl."/images/calendar.png","calendar",

array("id"=>"c_button4","class"=>"pointer")); ?>

&amp;nbsp;(calendar appears when image is clicked)


&lt;?php &#036;this-&gt;widget('application.extensions.calendar.SCalendar',


    array(


    'inputField'=&gt;'months',


    'button'=&gt;'c_button4',


    'ifFormat'=&gt;'%Y-%m-%d',


));


?&gt;


&lt;/div&gt;

Well now am trying it in this way…this is my code for the calender’s to chose the dates…but when i try to access these in the model using $this->month and $this->monthd it doesnt give any value?

can you hhelp me on this please?