In the below codeigniter i have placed the controller.Now i have placed a PDF file in a view and i want to call the PDF file from the controller.but it displays like unreadable format (ie)
ÄQ°ùÂ/B‘]xJxyEÆ›Vòþ˜X‚X ð?¼—ä*î7îç·JÚ–ÎÐhK*_ÝüÊ®ˆ¯=»W'{(
.
Controller:
<?php
class Help extends ci_controller
{
function index(){
$this->load->helper(array('My_Pdf'));
$this->load->view('ss.pdf');
}
}
?>