How to call a view without header/footer in cakephp

you can set a blank or null layout for view which you want to display without header footer.


<?php
class YoursController extends AppController {
	
	public function viewname()
	{
		$this->layout = null;
	}
}