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