How to call a view without header/footer in cakephp

{ // deep_execution_view
const authorName = "Ankit Agrawal";
//
const publishDate = "July 27, 2015";

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;
	}
}

}