Problem With View And Models

Hello!

In protected/modules/announcements/views/announcementsEntry/update.php.

This is my view, inside I have:


                               <div class="control-group">

                                    <?php echo $form->labelEx($phmodel, 'email', array('class' => 'control-label')); ?>

                                    <div class="controls">

                                        <?php echo $form->textField($model, 'email', array('class' => '')); ?>

                                        <span class="help-inline"> <?php echo $form->error($model, 'email'); ?>          </span>



How can I add as value user’s email that I know id?

Thank you.