Get file .txt with fopen in notepad

hi guys…
i really need your help, i want in get my .txt file, that contains html script, with fopen script in tcpdf but it still error, this is my script…

<?
require_once(‘…/config/lang/eng.php’);
require_once(‘…/tcpdf.php’);
$fp = fopen(“Hal_1.txt”, ‘r’);
$fp2 = fopen(“Hal_1_2.txt”, ‘r’);

// create new PDF document
$pdf = new TCPDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, ‘UTF-8’, false);

// set document information
$pdf->SetCreator(PDF_CREATOR);
$pdf->SetAuthor(‘Nicola Asuni’);
$pdf->SetTitle(‘TCPDF Example 048’);
$pdf->SetSubject(‘TCPDF Tutorial’);
$pdf->SetKeywords(‘TCPDF, PDF, example, test, guide’);

// set default header data
$pdf->SetHeaderData(PDF_HEADER_LOGO, PDF_HEADER_LOGO_WIDTH, PDF_HEADER_TITLE.’ 048’, PDF_HEADER_STRING);

// set header and footer fonts
$pdf->setHeaderFont(Array(PDF_FONT_NAME_MAIN, ‘’, PDF_FONT_SIZE_MAIN));
$pdf->setFooterFont(Array(PDF_FONT_NAME_DATA, ‘’, PDF_FONT_SIZE_DATA));

// set default monospaced font
$pdf->SetDefaultMonospacedFont(PDF_FONT_MONOSPACED);

//set margins
$pdf->SetMargins(PDF_MARGIN_LEFT, PDF_MARGIN_TOP, PDF_MARGIN_RIGHT);
$pdf->SetHeaderMargin(PDF_MARGIN_HEADER);
$pdf->SetFooterMargin(PDF_MARGIN_FOOTER);

//set auto page breaks
$pdf->SetAutoPageBreak(TRUE, PDF_MARGIN_BOTTOM);

//set image scale factor
$pdf->setImageScale(PDF_IMAGE_SCALE_RATIO);

//set some language-dependent strings
$pdf->setLanguageArray($l);

$pdf->SetFont(‘times’, ‘’, 10);

// add a page
$pdf->AddPage();

$pdf->Write(0, ‘FORMULIR SEKOLAH MENENGAH ATAS’, ‘’, 0, ‘C’, true, 0, false, false, 0);

$pdf->SetFont(‘times’, ‘’,8);

//$tbl = fopen(‘namafile.html’);
//$tbl = <<<EOD
//$pdf->$fp2;
//EOD;
$pdf->writeHTML($fp2, true, false, false, false, ‘’);

//$tbl = <<<EOD
//$pdf->$fp;
//EOD;
$pdf->writeHTML($fp, true, false, false, false, ‘’);
//$pdf->fopen(“c:\\folder\\resource.txt”, “r”);

$pdf->Output(‘tugas_sinergi.pdf’, ‘I’);

i really need your help guys, thank’s…

Update the two lines of code below:
$fp = fopen(“Hal_1.txt”, ‘r’);
$fp2 = fopen(“Hal_1_2.txt”, ‘r’);

to:
$fp = file_get_contents(“Hal_1.txt”);
$fp2 = file_get_contents("Hal_1_2.txt);

Test it and see if it works.