Nested forms are when a form is placed within another form, often in the ruby-on-rails environment.
As of HTML 5, the form element can't be nested. Check section 4.10.18, "Association of controls and forms" for more information.
The yii platform can also handle nested forms, like the example below:
<div class="form">
<?php $this->renderPartial('_form', array('form'=>$form)); ?>
<?php echo $form['user']; ?>
<?php echo $form['profile']; ?>
<?php echo $form['subformbuttons']; ?>
</div>
Check the forms section for general questions and details about forms.