Well, if you don't do anything to remove it, the submitted form data
($this->data in your controller) will still be there when the form is
displayed with validation errors. Which means the Project Name input
field should be prepopulated with what the user just submitted.
If you just want to get this value into your actual validation error
message, then just have something like this in your view
<div class="required">
<?php echo $form->label('Project/name', 'Project Name');?>
<?php echo $html->input('Project/name', array('size' => '60'));?>
<?php echo $html->tagErrorMsg('Project/name', 'The Project Name `'.
$html->tagValue('Project/name').'` is invalid - please use alphabetic
characters only.');?>
</div>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Cake
PHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/cake-php?hl=en
-~----------~----~----~----~------~----~------~--~---