How to include view(.phtml) file in another view file

In the view file,
echo $this->partial('index/partial.phtml', 'module')

You have to create the partial.phtml in views/helpers/index folder, where index is the controller name. You can specify the module as the second parameter.