sendRtf() public method

sends rtf content as file attachment
public sendRtf ( string $filename = 'simple', $free = true )
$filename string
Ejemplo n.º 1
0
        $formatH2->setSpaceAfter(6);
        $formatP = new PHPRtfLite_ParFormat();
        $formatP->setSpaceAfter(3);
        // Содержание страницы
        $section = $rtf->addSection();
        $section->writeText('Used Cars for Sale', $fontH1, $formatH1);
        while ($row = getRow($result)) {
            $section->writeText($row['make'], $fontH2, $formatH2);
            $section->setNoBreak();
            $section->writeText('<bullet> Price: $' . number_format($row['price'], 2), $fontP, $formatP);
            $section->writeText('<bullet> Mileage: ' . number_format($row['mileage']), $fontP, $formatP);
            $section->writeText('<bullet> Transmission: ' . $row['transmission'], $fontP, $formatP);
            $section->writeText($row['description'] . '<hr>', $fontP, $formatP);
        }
        // Выходной файл
        $rtf->sendRtf('cars.rtf');
    } catch (Exception $e) {
        $error = $e->getMessage();
    }
}
?>
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <title>Used Cars</title>
  <link href="styles/styles.css" rel="stylesheet" type="text/css">
</head>

<body>
<div id="wrapper">
Ejemplo n.º 2
0
    /*$project_id = $_GET["project_id"];
    	$ps_id = $_GET["ps_id"];
    	
    	$qup = mysql_query("select * from t_project where project_id = $project_id");
    	$project_info = mysql_fetch_object($qup);
    	
    	$qup = mysql_query("select *,date_format(ps_test_tanggal,'%d-%b-%Y') ps_test_tanggal2 from t_project_source where ps_id = $ps_id");
    	$project_source_info = mysql_fetch_object($qup);*/
}
// Init
$null = null;
PHPRtfLite::registerAutoloader();
$parFormat = new PHPRtfLite_ParFormat();
$rtf = new PHPRtfLite();
//setLandscape()
$rtf->setLandscape();
//$rtf->setMargins(3,2,3,2);
//_createHeader($project_info);
$rtf->setMargins(3, 2, 3, 2);
$sect =& $rtf->addSection();
//_createTitle($project_info);
_createTable();
//
/*$sect = &$rtf->addSection();
	_createTable(3,3);
	//
	$sect = &$rtf->addSection();
	_createUraian();*/
$namafile = "Schedule.rtf";
$rtf->sendRtf($namafile);