Upload - Verot

I have one doubt in handle upload function.

In These functions

Active filefield image store in db but the Html code of input file filed image not saved in db how to save the image name using input type field.

<div class="row">

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





&lt;?php echo CHtml::activeFileField(&#036;model, &quot;images&quot;);?&gt;

</div>

<?php echo CHtml::form(’’,‘post’,array(‘enctype’=>‘multipart/form-data’)); ?>

<input type="file" name="images" />

<?php echo CHtml::endForm(); ?>

Any one know tell me :)